Fix phantom NRE from ProcessInput during some crashes on Mono

Pretty sure this only affected Mono. The infinite loop in ProgramRunLoop
continued even after the form was disposed (in the testing I did, this was
always during the call to CheckMessages). However, DisplayManager (actually
GlobalWin.DisplayManager) was cleared during disposal, so the call to
DisplayManager.UntransformPoint rightly threw an NRE. After this change, the
"real" stacktrace is still printed as always.
This commit is contained in:
YoshiRulz 2020-08-11 16:08:11 +10:00
parent 6f5028bfcf
commit 953a14016f
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -712,7 +712,7 @@ namespace BizHawk.Client.EmuHawk
Close();
}
if (_windowClosedAndSafeToExitProcess)
if (IsDisposed || _windowClosedAndSafeToExitProcess)
{
break;
}