diff options
| author | Stevoisiak <Stevoisiak@gmail.com> | 2015-02-23 20:43:29 -0500 |
|---|---|---|
| committer | Stevoisiak <Stevoisiak@gmail.com> | 2015-02-26 16:57:31 -0500 |
| commit | 06cb85991e7abbbaf50479eb902ee5c43c7415a9 (patch) | |
| tree | fc484a55e6551731ae999a1218d2adcdf62cab7a /Source/Core/DiscIO/VolumeCommon.cpp | |
| parent | df2f6d137e5e1b9e7ffe8a51f9952ab555a45898 (diff) | |
De-capitalized CountryCode
Diffstat (limited to 'Source/Core/DiscIO/VolumeCommon.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeCommon.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/DiscIO/VolumeCommon.cpp b/Source/Core/DiscIO/VolumeCommon.cpp index ee2df9c078..87f0c722a7 100644 --- a/Source/Core/DiscIO/VolumeCommon.cpp +++ b/Source/Core/DiscIO/VolumeCommon.cpp @@ -12,9 +12,9 @@ // Increment CACHE_REVISION if the code below is modified (ISOFile.cpp & GameFile.cpp) namespace DiscIO { -IVolume::ECountry CountrySwitch(u8 CountryCode) +IVolume::ECountry CountrySwitch(u8 country_code) { - switch (CountryCode) + switch (country_code) { // Region free - Uses European flag as placeholder case 'A': @@ -68,8 +68,8 @@ IVolume::ECountry CountrySwitch(u8 CountryCode) return IVolume::COUNTRY_TAIWAN; default: - if (CountryCode > 'A') // Silently ignore IOS wads - WARN_LOG(DISCIO, "Unknown Country Code! %c", CountryCode); + if (country_code > 'A') // Silently ignore IOS wads + WARN_LOG(DISCIO, "Unknown Country Code! %c", country_code); return IVolume::COUNTRY_UNKNOWN; } } |
