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

This commit is contained in:
adelikat 2014-09-07 15:17:47 +00:00
parent 7b2ce25388
commit a85b1d58a1
1 changed files with 4 additions and 0 deletions

View File

@ -88,6 +88,10 @@ namespace BizHawk.Client.Common
catch (EndOfStreamException) { } catch (EndOfStreamException) { }
}); });
} }
catch
{
return false;
}
finally finally
{ {
bl.Dispose(); bl.Dispose();