mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-23 19:19:22 +01:00
Snes9x - Classify region id 18 as PAL (fixes 615) (#888)
This commit is contained in:
parent
c5b911236d
commit
0fd4dc968b
@ -2562,7 +2562,7 @@ void CMemory::InitROM (void)
|
||||
if (Settings.ForcePAL)
|
||||
Settings.PAL = TRUE;
|
||||
else
|
||||
if (!Settings.BS && (ROMRegion >= 2) && (ROMRegion <= 12))
|
||||
if (!Settings.BS && ((ROMRegion >= 2) && (ROMRegion <= 12) || ROMRegion == 18)) // 18 is used by "Tintin in Tibet (Europe) (En,Es,Sv)"
|
||||
Settings.PAL = TRUE;
|
||||
else
|
||||
Settings.PAL = FALSE;
|
||||
|
Loading…
Reference in New Issue
Block a user