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:
parent
3c327449e8
commit
e99ea11cf7
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue