Fix RegionSwitchGC for the value 'K'

Korean GameCube releases have their region set to NTSC-J.
This commit is contained in:
JosJuice 2017-07-16 13:52:53 +02:00
parent ba356f78d1
commit fe10e8aa6c

View file

@ -48,7 +48,7 @@ Country TypicalCountryForRegion(Region region)
Region RegionSwitchGC(u8 country_code) Region RegionSwitchGC(u8 country_code)
{ {
Region region = RegionSwitchWii(country_code); Region region = RegionSwitchWii(country_code);
return region == Region::NTSC_K ? Region::UNKNOWN_REGION : region; return region == Region::NTSC_K ? Region::NTSC_J : region;
} }
Region RegionSwitchWii(u8 country_code) Region RegionSwitchWii(u8 country_code)