mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-25 11:46:27 +00:00
Add support for german region flag. Still need to change image. (currently using a copy of europe flag)
This commit is contained in:
parent
f1489a4e18
commit
14b8d3f107
5 changed files with 90 additions and 1 deletions
|
@ -47,6 +47,7 @@ public:
|
|||
enum ECountry
|
||||
{
|
||||
COUNTRY_EUROPE = 0,
|
||||
COUNTRY_GERMANY,
|
||||
COUNTRY_FRANCE,
|
||||
COUNTRY_RUSSIA,
|
||||
COUNTRY_USA,
|
||||
|
|
|
@ -28,10 +28,12 @@ IVolume::ECountry CountrySwitch(u8 CountryCode)
|
|||
|
||||
// PAL
|
||||
case 'D': // German
|
||||
return IVolume::COUNTRY_GERMANY;
|
||||
break;
|
||||
|
||||
case 'X': // Used by a couple PAL games
|
||||
case 'Y': // German, french
|
||||
|
||||
|
||||
case 'L': // Japanese import to PAL regions
|
||||
case 'M': // Japanese import to PAL regions
|
||||
case 'S': // Spanish-speaking regions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue