SMS: fix GG Region detection

This commit is contained in:
beirich 2014-03-20 04:19:38 +00:00
parent 4c448e6858
commit 3153587eb3
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
byte value = 0xFF;
if (Controller["Pause"])
value ^= 0x80;
if (Region == "US")
if (Region == "Japan")
value ^= 0x40;
return value;
}