mirror of
https://github.com/zeldaret/tp
synced 2026-05-29 08:43:05 -04:00
Z2AudioLib debug (#3016)
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user