gave audio interface proper name

This commit is contained in:
awtterpip
2023-02-07 09:13:55 -06:00
parent bccdc8221e
commit 5c605932ef
4 changed files with 7 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ mod objects;
mod wayland;
use crate::core::destroy_queue;
use crate::nodes::{drawable, hmd, input, sound};
use crate::nodes::{drawable, hmd, input, audio};
use crate::objects::input::mouse_pointer::MousePointer;
use crate::objects::input::sk_controller::SkController;
use crate::objects::input::sk_hand::SkHand;
@@ -207,7 +207,7 @@ fn main() -> Result<()> {
});
}
drawable::draw(sk);
sound::update();
audio::update();
#[cfg(feature = "wayland")]
wayland.make_context_current();
},