Consider 'X' as region-free.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5552 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang 2010-05-30 17:31:52 +00:00
parent 997ab4ada1
commit c2daee96cc
1 changed files with 4 additions and 2 deletions

View File

@ -25,12 +25,14 @@ IVolume::ECountry CountrySwitch(u8 CountryCode)
// Region free - fall through to European defaults for now
case 'A':
case 'X': // Not a real region code. Used by DVDX 1.0 and
// The Homebrew Channel versions 1.0.4 and earlier.
// PAL
case 'D':
case 'L': // Japanese import to PAL regions
case 'M': // Japanese import to PAL regions
case 'S': // Spanish-speaking regions
case 'X': // XIII <- uses X but is PAL rip
case 'P':
return IVolume::COUNTRY_EUROPE;
break;
@ -45,7 +47,7 @@ IVolume::ECountry CountrySwitch(u8 CountryCode)
// NTSC
case 'E':
case 'N': // Japanese import to PAL regions
case 'N': // Japanese import to USA and other NTSC regions
case 'Z': // Prince Of Persia - The Forgotten Sands (WII)
return IVolume::COUNTRY_USA;
break;