fix Issue #292 - Bizhawk still here after emulating N64 and "Exit key" has been pressed
This commit is contained in:
parent
4d5b25600e
commit
38ebdd45d2
|
@ -75,7 +75,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
ToggleSound();
|
||||
break;
|
||||
case "Exit Program":
|
||||
_exit = true;
|
||||
_exitRequestPending = true;
|
||||
break;
|
||||
case "Record A/V":
|
||||
RecordAv();
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue