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:
LPFaint99 2009-03-09 01:22:54 +00:00
parent f4ba5b3589
commit 2f00c0bda9
1 changed files with 7 additions and 2 deletions

View File

@ -115,8 +115,13 @@ bool SCoreStartupParameter::AutoSetup(EBootBios _BootBios)
break;
default:
PanicAlert("Your GCM/ISO file seems to be invalid (invalid country).");
return false;
if (PanicYesNo("Your GCM/ISO file seems to be invalid (invalid country)."
"\nContinue with PAL region?"))
{
bNTSC = false;
Region = EUR_DIR;
break;
}else return false;
}
delete pVolume;