diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2026-01-05 03:54:00 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-05 03:54:00 -0800 |
| commit | 767e3ba17ea514010cbc4f2015f8ffc1d4d87286 (patch) | |
| tree | 67f3be455d11ba2b39b3684c1d67bf0200ab501a /src/Z2AudioLib/Z2SoundMgr.cpp | |
| parent | 1d2a0d956851e10549c56be039fd42f6f0937802 (diff) | |
Z2AudioLib debug (#3016)
Diffstat (limited to 'src/Z2AudioLib/Z2SoundMgr.cpp')
| -rw-r--r-- | src/Z2AudioLib/Z2SoundMgr.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Z2AudioLib/Z2SoundMgr.cpp b/src/Z2AudioLib/Z2SoundMgr.cpp index 8e32d68196..9d3b4825f0 100644 --- a/src/Z2AudioLib/Z2SoundMgr.cpp +++ b/src/Z2AudioLib/Z2SoundMgr.cpp @@ -14,6 +14,10 @@ #include "Z2AudioLib/Z2AudioCS.h" #endif +static void dummy() { + OS_REPORT("seqCallBack!!!!!\n"); +} + u16 seqCallback(JASTrack* track, u16 command) { switch (command) { case 0x1000: @@ -246,7 +250,7 @@ void Z2SoundMgr::resetFilterAll() { i = 0; } - for (; i < 9; i++) { + for (; i < MAX_CATEGORIES; i++) { JAISeCategoryMgr* category = seMgr_.getCategory(i); int se_count = category->getMaxActiveSe(); if (se_count > 0) { @@ -274,7 +278,7 @@ void Z2SoundMgr::mixOut() { i = 0; } - for (; i < 9; i++) { + for (; i < MAX_CATEGORIES; i++) { JAISeCategoryMgr* category = seMgr_.getCategory(i); int se_count = category->getMaxActiveSe(); if (se_count > 0) { |
