diff options
| author | Nicholas Estelami <NEstelami@users.noreply.github.com> | 2022-06-10 13:53:03 -0400 |
|---|---|---|
| committer | Nicholas Estelami <NEstelami@users.noreply.github.com> | 2022-06-16 20:35:52 -0400 |
| commit | 28073fbb191ee13f8fade45b98eb6504c00df4c8 (patch) | |
| tree | cedde9791ed2e7c5c3071e9e76b13d55e941f4a7 | |
| parent | ef2f4f799cd645d1edb4640c8d9a1f398e01f231 (diff) | |
Commented out additional test code
| -rw-r--r-- | ZAPDTR/ZAPD/ZAudio.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ZAPDTR/ZAPD/ZAudio.cpp b/ZAPDTR/ZAPD/ZAudio.cpp index d0df11f92..8dd985701 100644 --- a/ZAPDTR/ZAPD/ZAudio.cpp +++ b/ZAPDTR/ZAPD/ZAudio.cpp @@ -327,19 +327,19 @@ void ZAudio::ParseRawData() //int gSoundFontTableOffset = 0x138270; // OTRTODO: Make this an XML Param //int gSequenceTableOffset = 0x1386A0; // OTRTODO: Make this an XML Param //int gSampleBankTableOffset = 0x138D90; // OTRTODO: Make this an XML Param - // int gSequenceFontTableOffset = 0x1384E0; // OTRTODO: Make this an XML Param + //int gSequenceFontTableOffset = 0x1384E0; // OTRTODO: Make this an XML Param // NMQ DBG ROM - //int gSoundFontTableOffset = 0x138290; // OTRTODO: Make this an XML Param - //int gSequenceTableOffset = 0x1386C0; // OTRTODO: Make this an XML Param - //int gSampleBankTableOffset = 0x138DB0; // OTRTODO: Make this an XML Param - //int gSequenceFontTableOffset = 0x138500; // OTRTODO: Make this an XML Param + int gSoundFontTableOffset = 0x138290; // OTRTODO: Make this an XML Param + int gSequenceTableOffset = 0x1386C0; // OTRTODO: Make this an XML Param + int gSampleBankTableOffset = 0x138DB0; // OTRTODO: Make this an XML Param + int gSequenceFontTableOffset = 0x138500; // OTRTODO: Make this an XML Param // NTSC 1.0 - int gSoundFontTableOffset = 0x1026A0; // OTRTODO: Make this an XML Param - int gSequenceTableOffset = 0x102AD0; // OTRTODO: Make this an XML Param - int gSampleBankTableOffset = 0x1031C0; // OTRTODO: Make this an XML Param - int gSequenceFontTableOffset = 0x102910; // OTRTODO: Make this an XML Param + //int gSoundFontTableOffset = 0x1026A0; // OTRTODO: Make this an XML Param + //int gSequenceTableOffset = 0x102AD0; // OTRTODO: Make this an XML Param + //int gSampleBankTableOffset = 0x1031C0; // OTRTODO: Make this an XML Param + //int gSequenceFontTableOffset = 0x102910; // OTRTODO: Make this an XML Param soundFontTable = ParseAudioTable(codeData, gSoundFontTableOffset); sequenceTable = ParseAudioTable(codeData, gSequenceTableOffset); |
