tastudio: fix a couple of crashes

This commit is contained in:
feos 2016-09-09 19:15:00 +03:00
parent e5f2f53bde
commit ef445c90c7
2 changed files with 5 additions and 2 deletions

View File

@ -2866,7 +2866,8 @@ namespace BizHawk.Client.EmuHawk
if (GlobalWin.Tools.IsLoaded<TAStudio>() &&
GlobalWin.Tools.TAStudio.LastPositionFrame == Global.Emulator.Frame)
{
if (PauseOnFrame.Value <= GlobalWin.Tools.TAStudio.LastPositionFrame)
if (PauseOnFrame.HasValue &&
PauseOnFrame.Value <= GlobalWin.Tools.TAStudio.LastPositionFrame)
{
TasMovieRecord record = (Global.MovieSession.Movie as TasMovie)[Global.Emulator.Frame];
if (!record.Lagged.HasValue && IsSeeking)

View File

@ -94,7 +94,9 @@ namespace BizHawk.Client.EmuHawk
TastudioRecordMode();
_wasRecording = false;
}
RefreshDialog();
if (CurrentTasMovie != null)
RefreshDialog();
}
public bool FloatEditingMode