summaryrefslogtreecommitdiff
path: root/audio/src/lib.rs
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-11-22 16:00:35 -0500
committerFreya Murphy <freya@freyacat.org>2025-11-22 16:29:28 -0500
commitfbfb3ad0f70ebbc5db9e5d5fc41c53c15b082d9d (patch)
treea41968431e016403aa3956bbdc075dd4a2203e1e /audio/src/lib.rs
parentaudio: refactor into seperate crate (diff)
downloadDungeonCrawl-fbfb3ad0f70ebbc5db9e5d5fc41c53c15b082d9d.tar.gz
DungeonCrawl-fbfb3ad0f70ebbc5db9e5d5fc41c53c15b082d9d.tar.bz2
DungeonCrawl-fbfb3ad0f70ebbc5db9e5d5fc41c53c15b082d9d.zip
audio: some changes
Diffstat (limited to 'audio/src/lib.rs')
-rw-r--r--audio/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/src/lib.rs b/audio/src/lib.rs
index b2d3e87..97121f5 100644
--- a/audio/src/lib.rs
+++ b/audio/src/lib.rs
@@ -85,6 +85,7 @@ impl Audio {
pub fn update(&mut self) {
if self.last.elapsed() >= TIME_SLICE {
+ self.data.explore.exec(&mut self.channels);
self.data.megalovania.exec(&mut self.channels);
self.last = Instant::now();
}