diff options
| author | inspectredc <78732756+inspectredc@users.noreply.github.com> | 2025-03-28 12:27:36 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-28 08:27:36 -0400 |
| commit | a7f24ae8a0da54440f4666c1619283676863ca6a (patch) | |
| tree | 0aabd61f6d1d36068026d13188b51d1816101aef | |
| parent | c179db85bb42ebf4c89d94a680be79aa37dcc0e3 (diff) | |
Fix NTSC rom info table (#35)
| -rw-r--r-- | rom_info.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rom_info.py b/rom_info.py index dc146d5..a6f5eb5 100644 --- a/rom_info.py +++ b/rom_info.py @@ -41,8 +41,8 @@ ROM_INFO_TABLE[Checksums.OOT_PAL_GC_MQ_DBG] = RomVersion("CFG/filelists/dbg.txt" ROM_INFO_TABLE[Checksums.OOT_PAL_10] = RomVersion("CFG/filelists/pal_oot.txt", 0x7950, "N64_PAL_10") ROM_INFO_TABLE[Checksums.OOT_PAL_11] = RomVersion("CFG/filelists/pal_oot.txt", 0x7950, "N64_PAL_11") ROM_INFO_TABLE[Checksums.OOT_NTSC_10] = RomVersion("CFG/filelists/ntsc_oot.txt", 0x7430, "N64_NTSC_10") -ROM_INFO_TABLE[Checksums.OOT_NTSC_11] = RomVersion("CFG/filelists/ntsc_oot.txt", 0x7430, "N64_NTSC_10") -ROM_INFO_TABLE[Checksums.OOT_NTSC_12] = RomVersion("CFG/filelists/ntsc_12_oot.txt", 0x7430, "N64_NTSC_10") +ROM_INFO_TABLE[Checksums.OOT_NTSC_11] = RomVersion("CFG/filelists/ntsc_oot.txt", 0x7430, "N64_NTSC_11") +ROM_INFO_TABLE[Checksums.OOT_NTSC_12] = RomVersion("CFG/filelists/ntsc_12_oot.txt", 0x7430, "N64_NTSC_12") class RomDmaEntry: def __init__(self, rom, i): |
