mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 06:29:00 +01:00
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 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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user