JASDriverTables

This commit is contained in:
Jcw87
2023-10-29 13:22:20 -07:00
parent 7e2db4950a
commit 55adb20bcf
5 changed files with 143 additions and 8 deletions
+1 -4
View File
@@ -127,10 +127,7 @@ namespace JASystem {
extern u16 JAS_DSP_PREFIX;
extern DSPBuffer* CH_BUF;
extern FXBuffer* FX_BUF;
extern float sDSPVolume;
extern u32 DSPADPCM_FILTER[];
extern u32 DSPRES_FILTER[];
extern f32 sDSPVolume;
};
}
-2
View File
@@ -23,8 +23,6 @@ namespace JASystem {
extern u16 MAX_AUTOMIXERLEVEL;
extern u32 JAS_SYSTEM_OUTPUT_MODE;
extern u8 JAS_UPDATE_INTERVAL;
extern int C5BASE_PITCHTABLE;
};
}
+16
View File
@@ -0,0 +1,16 @@
#ifndef JASDRIVERTABLES_H
#define JASDRIVERTABLES_H
#include "dolphin/types.h"
namespace JASystem {
namespace Driver {
extern f32 C5BASE_PITCHTABLE[];
}
namespace DSPInterface {
extern u16 DSPADPCM_FILTER[];
extern u16 DSPRES_FILTER[];
}
}
#endif /* JASDRIVERTABLES_H */