mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 21:28:51 +00:00
DiscIO: Move the Korean GC mess out of VolumeGC
This commit is contained in:
parent
08d0b98988
commit
57d05293fd
6 changed files with 19 additions and 21 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue