mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Add support for german region flag. Still need to change image. (currently using a copy of europe flag)
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user