Add the option to ignore unknown region code and boot as a PAL game, fixes issue 725
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2629 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
f4ba5b3589
commit
2f00c0bda9
|
@ -115,8 +115,13 @@ bool SCoreStartupParameter::AutoSetup(EBootBios _BootBios)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
PanicAlert("Your GCM/ISO file seems to be invalid (invalid country).");
|
if (PanicYesNo("Your GCM/ISO file seems to be invalid (invalid country)."
|
||||||
return false;
|
"\nContinue with PAL region?"))
|
||||||
|
{
|
||||||
|
bNTSC = false;
|
||||||
|
Region = EUR_DIR;
|
||||||
|
break;
|
||||||
|
}else return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
delete pVolume;
|
delete pVolume;
|
||||||
|
|
Loading…
Reference in New Issue