mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 16:16:05 +00:00
Added flags for Russia and Australia
This commit is contained in:
parent
f895648eb9
commit
00620ea729
5 changed files with 202 additions and 11 deletions
|
@ -47,6 +47,7 @@ public:
|
|||
COUNTRY_SDK,
|
||||
COUNTRY_UNKNOWN,
|
||||
COUNTRY_GERMANY,
|
||||
COUNTRY_AUSTRALIA,
|
||||
NUMBER_OF_COUNTRIES
|
||||
};
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue