mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-09 14:08:58 +01:00
use same region memcards as the nand title that is being launched
... this patch has been sitting in my working copy for ages :O fixes issue 4657. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7653 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
6cdb40a194
commit
913ca56e03
@ -233,6 +233,7 @@ bool SCoreStartupParameter::AutoSetup(EBootBS2 _BootBS2)
|
|||||||
{
|
{
|
||||||
case DiscIO::IVolume::COUNTRY_USA:
|
case DiscIO::IVolume::COUNTRY_USA:
|
||||||
bNTSC = true;
|
bNTSC = true;
|
||||||
|
Region = USA_DIR;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DiscIO::IVolume::COUNTRY_TAIWAN:
|
case DiscIO::IVolume::COUNTRY_TAIWAN:
|
||||||
@ -240,6 +241,7 @@ bool SCoreStartupParameter::AutoSetup(EBootBS2 _BootBS2)
|
|||||||
// TODO: Should these have their own Region Dir?
|
// TODO: Should these have their own Region Dir?
|
||||||
case DiscIO::IVolume::COUNTRY_JAPAN:
|
case DiscIO::IVolume::COUNTRY_JAPAN:
|
||||||
bNTSC = true;
|
bNTSC = true;
|
||||||
|
Region = JAP_DIR;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DiscIO::IVolume::COUNTRY_EUROPE:
|
case DiscIO::IVolume::COUNTRY_EUROPE:
|
||||||
@ -247,15 +249,16 @@ bool SCoreStartupParameter::AutoSetup(EBootBS2 _BootBS2)
|
|||||||
case DiscIO::IVolume::COUNTRY_ITALY:
|
case DiscIO::IVolume::COUNTRY_ITALY:
|
||||||
case DiscIO::IVolume::COUNTRY_RUSSIA:
|
case DiscIO::IVolume::COUNTRY_RUSSIA:
|
||||||
bNTSC = false;
|
bNTSC = false;
|
||||||
|
Region = EUR_DIR;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
bNTSC = false;
|
bNTSC = false;
|
||||||
|
Region = EUR_DIR;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
bWii = true;
|
bWii = true;
|
||||||
Region = EUR_DIR;
|
|
||||||
m_BootType = BOOT_WII_NAND;
|
m_BootType = BOOT_WII_NAND;
|
||||||
|
|
||||||
if (pVolume)
|
if (pVolume)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user