Fix RegionSwitchGC for the value 'K'
Korean GameCube releases have their region set to NTSC-J.
This commit is contained in:
parent
ba356f78d1
commit
fe10e8aa6c
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue