fix a dumb mistake I made that broke logic regarding pausing/unpausing the emulator after entering/exiting the menu
This commit is contained in:
parent
6f1090c87f
commit
a3ff05fd82
|
@ -2118,7 +2118,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
HandlePlatformMenus();
|
HandlePlatformMenus();
|
||||||
if (Global.Config.PauseWhenMenuActivated)
|
if (Global.Config.PauseWhenMenuActivated)
|
||||||
{
|
{
|
||||||
EmulatorPaused = wasPaused;
|
wasPaused = EmulatorPaused;
|
||||||
didMenuPause = true;
|
didMenuPause = true;
|
||||||
PauseEmulator();
|
PauseEmulator();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue