summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeCommon.cpp
diff options
context:
space:
mode:
authorStevoisiak <Stevoisiak@gmail.com>2014-10-26 17:47:07 -0400
committerStevoisiak <Stevoisiak@gmail.com>2014-10-28 23:04:24 -0400
commit00620ea7291ab94d5b216d48567e6b06d77cf4e8 (patch)
treecbff6a1bfd796e5957143707a9e687e3fed94ad1 /Source/Core/DiscIO/VolumeCommon.cpp
parentf895648eb95369e2d302ba93cc4354d3880a7337 (diff)
Added flags for Russia and Australia
Diffstat (limited to 'Source/Core/DiscIO/VolumeCommon.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeCommon.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeCommon.cpp b/Source/Core/DiscIO/VolumeCommon.cpp
index efcd9c5f53..7da110403a 100644
--- a/Source/Core/DiscIO/VolumeCommon.cpp
+++ b/Source/Core/DiscIO/VolumeCommon.cpp
@@ -30,9 +30,11 @@ IVolume::ECountry CountrySwitch(u8 CountryCode)
case 'M': // Japanese import to PAL regions
case 'S': // Spanish-speaking regions
case 'P':
- case 'U': // Australia
return IVolume::COUNTRY_EUROPE;
+ case 'U': // Australia
+ return IVolume::COUNTRY_AUSTRALIA;
+
case 'F':
return IVolume::COUNTRY_FRANCE;