summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/VolumeGC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DiscIO/Src/VolumeGC.cpp')
-rw-r--r--Source/Core/DiscIO/Src/VolumeGC.cpp76
1 files changed, 40 insertions, 36 deletions
diff --git a/Source/Core/DiscIO/Src/VolumeGC.cpp b/Source/Core/DiscIO/Src/VolumeGC.cpp
index 93ff459b52..aca22480c9 100644
--- a/Source/Core/DiscIO/Src/VolumeGC.cpp
+++ b/Source/Core/DiscIO/Src/VolumeGC.cpp
@@ -88,42 +88,46 @@ IVolume::ECountry CVolumeGC::GetCountry() const
switch (CountryCode)
{
- case 'S':
- country = COUNTRY_EUROPE;
- break; // PAL // <- that is shitty :) zelda demo disc
-
- case 'P':
- country = COUNTRY_EUROPE;
- break; // PAL
-
- case 'D':
- country = COUNTRY_EUROPE;
- break; // PAL
-
- case 'F':
- country = COUNTRY_FRANCE;
- break; // PAL
-
- case 'X':
- country = COUNTRY_EUROPE;
- break; // XIII <- uses X but is PAL
-
- case 'E':
- country = COUNTRY_USA;
- break; // USA
-
- case 'J':
- country = COUNTRY_JAP;
- break; // JAP
-
- case 'O':
- country = COUNTRY_UNKNOWN;
- break; // SDK
-
- default:
- // PanicAlert(StringFromFormat("Unknown Country Code!").c_str());
- country = COUNTRY_UNKNOWN;
- break;
+ case 'S':
+ country = COUNTRY_EUROPE;
+ break; // PAL // <- that is shitty :) zelda demo disc
+
+ case 'P':
+ country = COUNTRY_EUROPE;
+ break; // PAL
+
+ case 'D':
+ country = COUNTRY_EUROPE;
+ break; // PAL
+
+ case 'F':
+ country = COUNTRY_FRANCE;
+ break; // PAL
+
+ case 'I':
+ country = COUNTRY_ITALY;
+ break; // PAL
+
+ case 'X':
+ country = COUNTRY_EUROPE;
+ break; // XIII <- uses X but is PAL
+
+ case 'E':
+ country = COUNTRY_USA;
+ break; // USA
+
+ case 'J':
+ country = COUNTRY_JAP;
+ break; // JAP
+
+ case 'O':
+ country = COUNTRY_UNKNOWN;
+ break; // SDK
+
+ default:
+ // PanicAlert(StringFromFormat("Unknown Country Code!").c_str());
+ country = COUNTRY_UNKNOWN;
+ break;
}
return(country);