summaryrefslogtreecommitdiff
path: root/OTRExporter
diff options
context:
space:
mode:
authorAdam Bird <Archez@users.noreply.github.com>2023-09-19 10:30:48 -0400
committerGitHub <noreply@github.com>2023-09-19 09:30:48 -0500
commitbb643661f62865dfc757c185d0daaebb32f2d53d (patch)
treebc5a89a5bbb5ebf1eb338fe287e1247fad1a123f /OTRExporter
parentdf6c01732ad8c4b2eca41af6b3b2d4dd5fc5c39c (diff)
GC PAL MQ Retail support (#3167)
* initial pal mq retail support * more mq pal support * pal mq support in the launch scripts * more offset fixes * match tluts with mq debug * update support hashes doc * target lus commit for playtesting * more offset fixes * add hashes for other formats * decomp name sync * add scripted texture definitions * fix up from other xml changes * update name
Diffstat (limited to 'OTRExporter')
-rw-r--r--OTRExporter/rom_info.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/OTRExporter/rom_info.py b/OTRExporter/rom_info.py
index 59c02f9e3..8bf471cf0 100644
--- a/OTRExporter/rom_info.py
+++ b/OTRExporter/rom_info.py
@@ -35,6 +35,7 @@ class RomVersion:
ROM_INFO_TABLE = dict()
ROM_INFO_TABLE[Checksums.OOT_PAL_GC] = RomVersion("CFG/filelists/gamecube_pal.txt", 0x7170, "GC_NMQ_PAL_F")
+ROM_INFO_TABLE[Checksums.OOT_PAL_MQ] = RomVersion("CFG/filelists/gamecube_pal.txt", 0x7170, "GC_MQ_PAL_F")
ROM_INFO_TABLE[Checksums.OOT_PAL_GC_DBG1] = RomVersion("CFG/filelists/dbg.txt", 0x12F70, "GC_NMQ_D")
ROM_INFO_TABLE[Checksums.OOT_PAL_GC_MQ_DBG] = RomVersion("CFG/filelists/dbg.txt", 0x12F70, "GC_MQ_D")
ROM_INFO_TABLE[Checksums.OOT_PAL_11] = RomVersion("CFG/filelists/pal_oot.txt", 0x7950, "N64_PAL_11")