Fix sysID in error dialog from `.xml` load failure

I think this predates the multi-disk bundler lmao
This commit is contained in:
YoshiRulz 2025-04-12 01:33:05 +10:00
parent 6c0f2a0ebf
commit d94fb910c7
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -728,7 +728,7 @@ namespace BizHawk.Client.Common
}
catch
{
DoLoadErrorCallback(ex.ToString(), VSystemID.Raw.GBL, LoadErrorType.Xml);
DoLoadErrorCallback(ex.ToString(), game?.System ?? VSystemID.Raw.SNES, LoadErrorType.Xml);
return false;
}
}