diff options
| author | Adam Bird <Archez@users.noreply.github.com> | 2023-09-19 10:30:48 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-19 09:30:48 -0500 |
| commit | 5e6d25a0d9647fdb4ae5e2b3ec0ec97862c0bbae (patch) | |
| tree | d336269767f8fede9bfe6a4d878d60a6a9c4942e /rom_info.py | |
| parent | dc608c82b3d569d076964a239a75dfcc944e9d03 (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 'rom_info.py')
| -rw-r--r-- | rom_info.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rom_info.py b/rom_info.py index 59c02f9..8bf471c 100644 --- a/rom_info.py +++ b/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") |
