summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeCommon.cpp
diff options
context:
space:
mode:
authorskidau <skidau@gmail.com>2014-10-29 14:15:45 +1100
committerskidau <skidau@gmail.com>2014-10-29 14:15:45 +1100
commitf426276b2ecdcf360987b83f92bd1317f8266b22 (patch)
tree5ea0755c3d81f1750ea90989382a5dc0cd61e36b /Source/Core/DiscIO/VolumeCommon.cpp
parent049afc4315d7c5838185f002593d5b28e7c90a3c (diff)
parent00620ea7291ab94d5b216d48567e6b06d77cf4e8 (diff)
Merge pull request #1413 from Stevoisiak/moreFlags
Added country 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;