From 5d9962d102fdfbdc5fc3096df32806cf7edad3b2 Mon Sep 17 00:00:00 2001 From: Kurt Date: Mon, 17 Apr 2017 23:36:46 -0700 Subject: [PATCH] Mark SAV as unmodified upon load Closes #1076 seems kinda lazy as I didn't bother tracking down the suspect that modifies the save (presumably the hex seed values); those should load correctly and not change any bytes. --- PKHeX.WinForms/MainWindow/Main.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PKHeX.WinForms/MainWindow/Main.cs b/PKHeX.WinForms/MainWindow/Main.cs index 9c1edd148..aa8fcfd90 100644 --- a/PKHeX.WinForms/MainWindow/Main.cs +++ b/PKHeX.WinForms/MainWindow/Main.cs @@ -1357,6 +1357,7 @@ private void openSAV(SaveFile sav, string path) TemplateFields(); loadingSAV = false; + SAV.Edited = false; // Indicate audibly the save is loaded SystemSounds.Beep.Play();