tastudio: why don't we update input every new frame we capture

everybody loves tiny off by one errors that completely break everything
This commit is contained in:
vadosnaprimer 2017-11-05 16:23:05 +03:00
parent 3c327449e8
commit e99ea11cf7
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ namespace BizHawk.Client.Common
if (Movie is TasMovie)
{
(Movie as TasMovie).GreenzoneCurrentFrame();
if (Movie.IsPlaying && Global.Emulator.Frame > Movie.InputLogLength)
if (Movie.IsPlaying && Global.Emulator.Frame >= Movie.InputLogLength)
{
HandleFrameLoopForRecordMode();
}