Tastudio - refresh view when middle-clicking to pause

This commit is contained in:
adelikat 2021-02-21 15:14:57 -06:00
parent a8b1e06e44
commit d4dc260fc4
1 changed files with 2 additions and 8 deletions

View File

@ -533,17 +533,11 @@ namespace BizHawk.Client.EmuHawk
if (!record.Lagged.HasValue && LastPositionFrame > Emulator.Frame) if (!record.Lagged.HasValue && LastPositionFrame > Emulator.Frame)
{ {
StartSeeking(LastPositionFrame, true); StartSeeking(LastPositionFrame, true);
return;
} }
else
{
MainForm.UnpauseEmulator();
}
}
else
{
MainForm.PauseEmulator();
} }
MainForm.TogglePause();
return; return;
} }