From fa3ccc59e71f72d9e24e590f5521c6466fc706f5 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 27 Feb 2016 09:58:41 -0500 Subject: [PATCH] try/catch the File.Move when making a backup savestate and do nothing --- BizHawk.Client.EmuHawk/MainForm.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 144c81da3c..d78df4c5d4 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -3801,7 +3801,14 @@ namespace BizHawk.Client.EmuHawk backupFile.Delete(); } - File.Move(path, backup); + try + { + File.Move(path, backup); + } + catch + { + // Eat it, this will happen rarely and the user will rarely need the file, so the odds of simply not making the backup is very unlikely + } } SaveState(path, quickSlotName, false);