From 9df18d2bd1cb6cf6910359b64b38d1cf991413bb Mon Sep 17 00:00:00 2001 From: Kurt Date: Tue, 28 Feb 2017 23:23:58 -0800 Subject: [PATCH] Tweak gen3 sav load to force version prompt Hold Control when opening the save file Closes #887 --- PKHeX.WinForms/MainWindow/Main.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKHeX.WinForms/MainWindow/Main.cs b/PKHeX.WinForms/MainWindow/Main.cs index d2af5f77e..b2985a230 100644 --- a/PKHeX.WinForms/MainWindow/Main.cs +++ b/PKHeX.WinForms/MainWindow/Main.cs @@ -877,11 +877,11 @@ private void openSAV(SaveFile sav, string path) } } // Finish setting up the save file. - if (sav.IndeterminateGame && sav.Generation == 3) + if (sav.Generation == 3 && (sav.IndeterminateGame || ModifierKeys == Keys.Control)) { // Hacky cheats invalidated the Game Code value. var drGame = WinFormsUtil.Prompt(MessageBoxButtons.YesNoCancel, - "Unknown Gen3 Game Detected. Select Origins:", + "Gen3 Game Detected. Select Origins:", "Yes: Ruby / Sapphire" + Environment.NewLine + "No: Emerald" + Environment.NewLine + "Cancel: FireRed / LeafGreen");