summaryrefslogtreecommitdiff
path: root/src/audio.rs
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2024-04-26 14:26:22 -0400
committerLLLL Colonq <llll@colonq>2024-04-26 14:26:22 -0400
commitef27fca1e1041f8eb298d0dab6eed876786b2026 (patch)
treee52cc1552cfe982a881505f08fc74f8d0cab40cf /src/audio.rs
parentd2f9bfeba00018a1109949eed5a2434a040881fe (diff)
Fix lighting, various toggles
Diffstat (limited to 'src/audio.rs')
-rw-r--r--src/audio.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/audio.rs b/src/audio.rs
index dd89a67..2b190de 100644
--- a/src/audio.rs
+++ b/src/audio.rs
@@ -74,9 +74,7 @@ impl Assets {
}
pub fn play_sfx(&mut self, name: &str) {
- log::info!("sfx: {}", name);
if let Some(a) = self.audio.get(name) {
- log::info!("actually playing");
a.play(&self.ctx, None);
}
}