tastudio - when engaging and disengaging tastudio, clear out the PauseOnFrame property

This commit is contained in:
adelikat 2014-07-27 02:38:21 +00:00
parent f21daf9062
commit d3af111a5e
1 changed files with 2 additions and 0 deletions

View File

@ -149,6 +149,7 @@ namespace BizHawk.Client.EmuHawk
private void EngageTastudio()
{
GlobalWin.MainForm.PauseOnFrame = null;
GlobalWin.OSD.AddMessage("TAStudio engaged");
_tas = Global.MovieSession.Movie as TasMovie;
GlobalWin.MainForm.PauseEmulator();
@ -163,6 +164,7 @@ namespace BizHawk.Client.EmuHawk
private void DisengageTastudio()
{
GlobalWin.MainForm.PauseOnFrame = null;
GlobalWin.OSD.AddMessage("TAStudio disengaged");
Global.MovieSession.Movie = MovieService.DefaultInstance;
GlobalWin.MainForm.TakeControl();