Compare commits

..

2 commits

Author SHA1 Message Date
8ad53e456f Update Rust crate quick-xml to 0.37.0
Some checks failed
Gavania Merge Build / build (pull_request) Failing after 15m10s
2025-02-27 15:05:40 +00:00
79879d1ae7 Improve context interfdace 2025-02-27 13:52:14 +01:00
2 changed files with 1 additions and 2 deletions

View file

@ -18,4 +18,3 @@ anyhow = { version = "1.0.86", features = ["backtrace"] }
audio = { git = "https://gavania.de/hodasemi/audio.git", optional = true }
[features]
default = ["audio"]

View file

@ -18,7 +18,7 @@ pub trait ContextInterface: Send + Sync {
fn height(&self) -> u32;
#[cfg(feature = "audio")]
fn sound_handler(&self) -> std::sync::MutexGuard<'_, SoundHandler>;
fn sound_handler(&mut self) -> &mut SoundHandler;
}
pub enum TargetMode<T> {