mirror of https://github.com/snes9xgit/snes9x.git
Classify region id 18 as PAL (fixes #615)
This commit is contained in:
parent
10fe4be245
commit
e268af2966
|
@ -2531,7 +2531,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