From 2f00c0bda95db1e1f561bffe28ac533de04d1435 Mon Sep 17 00:00:00 2001 From: LPFaint99 Date: Mon, 9 Mar 2009 01:22:54 +0000 Subject: [PATCH] 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 --- Source/Core/Core/Src/CoreParameter.cpp | 9 +++++++-- 1 file 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;