fix a dumb mistake I made that broke logic regarding pausing/unpausing the emulator after entering/exiting the menu

This commit is contained in:
adelikat 2013-11-06 22:27:26 +00:00
parent 6f1090c87f
commit a3ff05fd82
1 changed files with 1 additions and 1 deletions

View File

@ -2118,7 +2118,7 @@ namespace BizHawk.Client.EmuHawk
HandlePlatformMenus();
if (Global.Config.PauseWhenMenuActivated)
{
EmulatorPaused = wasPaused;
wasPaused = EmulatorPaused;
didMenuPause = true;
PauseEmulator();
}