summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Estelami <NEstelami@users.noreply.github.com>2022-06-14 12:32:11 -0400
committerNicholas Estelami <NEstelami@users.noreply.github.com>2022-06-16 20:35:52 -0400
commitdb0d61c714ab9d68d504f0df3b9a7cf3a1d53f71 (patch)
treea8812f1b234d0b0844c6bc9cfb988e4602b7e251
parent1b8f7927f39078c93f7c90ea89f93fa9003d3f20 (diff)
GC PAL Audio XML
-rw-r--r--ZAPD/ZAudio.cpp8
-rw-r--r--ZAPD/ZRom.cpp4
2 files changed, 2 insertions, 10 deletions
diff --git a/ZAPD/ZAudio.cpp b/ZAPD/ZAudio.cpp
index a8b0f1f..2d92979 100644
--- a/ZAPD/ZAudio.cpp
+++ b/ZAPD/ZAudio.cpp
@@ -339,17 +339,11 @@ void ZAudio::ParseRawData()
// TABLE PARSING
- // GC PAL
+ // MQ DBG ROM
//int gSoundFontTableOffset = 0x138270;
//int gSequenceTableOffset = 0x1386A0;
//int gSampleBankTableOffset = 0x138D90;
//int gSequenceFontTableOffset = 0x1384E0;
-
- // NMQ DBG ROM
- //int gSoundFontTableOffset = 0x138290;
- //int gSequenceTableOffset = 0x1386C0;
- //int gSampleBankTableOffset = 0x138DB0;
- //int gSequenceFontTableOffset = 0x138500;
// NTSC 1.0
//int gSoundFontTableOffset = 0x1026A0;
diff --git a/ZAPD/ZRom.cpp b/ZAPD/ZRom.cpp
index a311714..0a4944b 100644
--- a/ZAPD/ZRom.cpp
+++ b/ZAPD/ZRom.cpp
@@ -192,10 +192,8 @@ ZRom::ZRom(std::string romPath)
else
files[lines[i]] = outData;
- //File::WriteAllBytes(StringHelper::Sprintf("baserom/%s", lines[i]), files[lines[i]]);
+ //File::WriteAllBytes(StringHelper::Sprintf("baserom/%s", lines[i].c_str()), files[lines[i]]);
}
-
- int bp = 0;
}
std::vector<uint8_t> ZRom::GetFile(std::string fileName)