From a85b1d58a1dfe4d9c75a3676fabd6ef6ae7edd49 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 7 Sep 2014 15:17:47 +0000 Subject: [PATCH] Don't bomb out when a core throws an exception on loadstate, still todo: bubble the error message up, instead of just telling them there was an error --- BizHawk.Client.Common/SavestateManager.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BizHawk.Client.Common/SavestateManager.cs b/BizHawk.Client.Common/SavestateManager.cs index 3effa11954..c06391b3b1 100644 --- a/BizHawk.Client.Common/SavestateManager.cs +++ b/BizHawk.Client.Common/SavestateManager.cs @@ -88,6 +88,10 @@ namespace BizHawk.Client.Common catch (EndOfStreamException) { } }); } + catch + { + return false; + } finally { bl.Dispose();