diff options
| author | LPFaint99 <lpfaint99@gmail.com> | 2009-03-09 01:22:54 +0000 |
|---|---|---|
| committer | LPFaint99 <lpfaint99@gmail.com> | 2009-03-09 01:22:54 +0000 |
| commit | 2f00c0bda95db1e1f561bffe28ac533de04d1435 (patch) | |
| tree | e2201ae152eb484775c407a1c9229ba5df26f6cb /Source/Core | |
| parent | f4ba5b35897f682895f923c76f720929f1ed2810 (diff) | |
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
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/Src/CoreParameter.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/Core/Core/Src/CoreParameter.cpp b/Source/Core/Core/Src/CoreParameter.cpp index 91805277fe..f0c4fa9eb9 100644 --- a/Source/Core/Core/Src/CoreParameter.cpp +++ b/Source/Core/Core/Src/CoreParameter.cpp @@ -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; |
