From 92278886b9a2c11405c74853224962f8c59a3c82 Mon Sep 17 00:00:00 2001 From: booto Date: Thu, 14 Jan 2016 19:56:57 +0800 Subject: [PATCH] DiscIO: Use specified Wii region for discs --- Source/Core/DiscIO/VolumeWiiCrypted.cpp | 47 +++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 3 deletions(-) diff --git a/Source/Core/DiscIO/VolumeWiiCrypted.cpp b/Source/Core/DiscIO/VolumeWiiCrypted.cpp index 16747f8782..3b06a45db2 100644 --- a/Source/Core/DiscIO/VolumeWiiCrypted.cpp +++ b/Source/Core/DiscIO/VolumeWiiCrypted.cpp @@ -160,10 +160,51 @@ IVolume::ECountry CVolumeWiiCrypted::GetCountry() const if (!m_pReader) return COUNTRY_UNKNOWN; - u8 country_code; - m_pReader->Read(3, 1, &country_code); + u8 country_byte; + if (!m_pReader->Read(3, 1, &country_byte)) + { + return COUNTRY_UNKNOWN; + } - return CountrySwitch(country_code); + IVolume::ECountry country_value = CountrySwitch(country_byte); + + u32 region_code; + if (!ReadSwapped(0x4E000, ®ion_code, false)) + { + return country_value; + } + + switch (region_code) + { + case 0: + switch (country_value) + { + case IVolume::COUNTRY_TAIWAN: + return IVolume::COUNTRY_TAIWAN; + default: + return IVolume::COUNTRY_JAPAN; + } + case 1: + return IVolume::COUNTRY_USA; + case 2: + switch (country_value) + { + case IVolume::COUNTRY_FRANCE: + case IVolume::COUNTRY_GERMANY: + case IVolume::COUNTRY_ITALY: + case IVolume::COUNTRY_NETHERLANDS: + case IVolume::COUNTRY_RUSSIA: + case IVolume::COUNTRY_SPAIN: + case IVolume::COUNTRY_AUSTRALIA: + return country_value; + default: + return IVolume::COUNTRY_EUROPE; + } + case 4: + return IVolume::COUNTRY_KOREA; + default: + return country_value; + } } std::string CVolumeWiiCrypted::GetMakerID() const