TAStudio - account for playback in previous commit

This commit is contained in:
adelikat 2013-12-17 18:32:48 +00:00
parent 9ddcfcce8b
commit 0582ef4c42
1 changed files with 8 additions and 1 deletions

View File

@ -98,7 +98,14 @@ namespace BizHawk.Client.EmuHawk
}
TASView.ItemCount = _tas.InputLogLength;
TASView.ensureVisible(_tas.InputLogLength - 1);
if (_tas.IsRecording)
{
TASView.ensureVisible(_tas.InputLogLength - 1);
}
else
{
TASView.ensureVisible(Global.Emulator.Frame - 1);
}
}
public void Restart()