mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DiscIO: Move the Korean GC mess out of VolumeGC
This commit is contained in:
@ -293,10 +293,10 @@ Country VolumeWii::GetCountry(const Partition& partition) const
|
||||
const u8 country_byte = ReadSwapped<u8>(3, partition).value_or(0);
|
||||
const Region region = GetRegion();
|
||||
|
||||
if (RegionSwitch(country_byte, Platform::WiiDisc) != region)
|
||||
if (RegionSwitch(country_byte, Platform::WiiDisc, region) != region)
|
||||
return TypicalCountryForRegion(region);
|
||||
|
||||
return CountrySwitch(country_byte);
|
||||
return CountrySwitch(country_byte, Platform::WiiDisc, region);
|
||||
}
|
||||
|
||||
std::string VolumeWii::GetMakerID(const Partition& partition) const
|
||||
|
Reference in New Issue
Block a user