Tweak gen3 sav load to force version prompt

Hold Control when opening the save file
Closes #887
This commit is contained in:
Kurt 2017-02-28 23:23:58 -08:00
parent 58bd3640b4
commit 9df18d2bd1

View File

@ -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");