mainform: only swallow IOExceptions when loading saveram. other exceptions are unexpected and should not be hidden
This commit is contained in:
parent
452e1f0db4
commit
84a86a72a5
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue