mainform: only swallow IOExceptions when loading saveram. other exceptions are unexpected and should not be hidden

This commit is contained in:
goyuken 2012-10-27 13:57:26 +00:00
parent 452e1f0db4
commit 84a86a72a5
1 changed files with 1 additions and 1 deletions

View File

@ -1792,7 +1792,7 @@ namespace BizHawk.MultiClient
reader.Read(sram, 0, sram.Length); reader.Read(sram, 0, sram.Length);
Global.Emulator.StoreSaveRam(sram); Global.Emulator.StoreSaveRam(sram);
} }
catch { } catch (IOException) { }
} }
private void CloseGame() private void CloseGame()