mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Fix RegionSwitchGC for the value 'K'
Korean GameCube releases have their region set to NTSC-J.
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user