tastudio: tastudio's Emulator was dying if we unpause tasproj while tastudio isn't loaded, and then attempt to launch it.
This commit is contained in:
parent
2894bb908d
commit
92bcca8b7d
|
@ -16,7 +16,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
case "Pause":
|
||||
// check this here since TogglePause() has no idea who triggered it
|
||||
// and we need to treat pause hotkey specially in tastudio
|
||||
if (GlobalWin.MainForm.EmulatorPaused)
|
||||
if (GlobalWin.MainForm.EmulatorPaused && GlobalWin.Tools.IsLoaded<TAStudio>())
|
||||
GlobalWin.Tools.TAStudio.IgnoreSeekFrame = true;
|
||||
TogglePause();
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue