From 84a86a72a5bca687d1dd7c548b91ca3e2cc30817 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sat, 27 Oct 2012 13:57:26 +0000 Subject: [PATCH] mainform: only swallow IOExceptions when loading saveram. other exceptions are unexpected and should not be hidden --- BizHawk.MultiClient/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 21158e52ed..7d7028a5aa 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -1792,7 +1792,7 @@ namespace BizHawk.MultiClient reader.Read(sram, 0, sram.Length); Global.Emulator.StoreSaveRam(sram); } - catch { } + catch (IOException) { } } private void CloseGame()