Print caught exception in `SavestateFile.Load`

fixes 1c0e72b16
This commit is contained in:
YoshiRulz 2025-03-08 15:25:29 +10:00
parent 1fa31fe0e9
commit ce21993ec4
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 1 deletions

View File

@ -151,8 +151,9 @@ namespace BizHawk.Client.Common
{
bl.GetCoreState(br => _statable.LoadStateBinary(br), tr => _statable.LoadStateText(tr));
}
catch (Exception)
catch (Exception e)
{
Util.DebugWriteLine(e);
return false;
}
}