diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-22 13:21:41 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-22 13:21:41 -0500 |
| commit | d0adf3c6813bb9e357d74f7a606352c957530686 (patch) | |
| tree | addea6486c8cd8c18f2d8b3f0111268c6c2c1236 /graphics/src/audio/mod.rs | |
| parent | audio: fix merge (diff) | |
| download | DungeonCrawl-d0adf3c6813bb9e357d74f7a606352c957530686.tar.gz DungeonCrawl-d0adf3c6813bb9e357d74f7a606352c957530686.tar.bz2 DungeonCrawl-d0adf3c6813bb9e357d74f7a606352c957530686.zip | |
audio: move 'asm' files out of data segment
Diffstat (limited to '')
| -rw-r--r-- | graphics/src/audio/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/audio/mod.rs b/graphics/src/audio/mod.rs index f0de9d4..2b85a0f 100644 --- a/graphics/src/audio/mod.rs +++ b/graphics/src/audio/mod.rs @@ -80,7 +80,7 @@ impl Audio { pub fn update(&mut self) { if self.last.elapsed() >= TIME_SLICE { - self.data.test.exec(&mut self.channels); + self.data.megalovania.exec(&mut self.channels); self.last = Instant::now(); } |