fix Issue #292 - Bizhawk still here after emulating N64 and "Exit key" has been pressed

This commit is contained in:
zeromus 2014-11-12 00:11:31 +00:00
parent 4d5b25600e
commit 38ebdd45d2
2 changed files with 9 additions and 1 deletions

View File

@ -75,7 +75,7 @@ namespace BizHawk.Client.EmuHawk
ToggleSound();
break;
case "Exit Program":
_exit = true;
_exitRequestPending = true;
break;
case "Record A/V":
RecordAv();

View File

@ -540,6 +540,13 @@ namespace BizHawk.Client.EmuHawk
}
CheckMessages();
if (_exitRequestPending)
{
_exitRequestPending = false;
Close();
}
if (_exit)
{
break;
@ -1225,6 +1232,7 @@ namespace BizHawk.Client.EmuHawk
private bool _avwriterpad;
private bool _exit;
private bool _exitRequestPending;
private bool _runloopFrameProgress;
private DateTime _frameAdvanceTimestamp = DateTime.MinValue;
private int _runloopFps;