Fix: tastudio.setplayback would refuse to seek past the end of a movie

This commit is contained in:
SuuperW 2025-06-14 21:55:52 -05:00
parent 65e4133883
commit 2749b1b675
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ namespace BizHawk.Client.EmuHawk
f = Tastudio.CurrentTasMovie.Markers[f].Frame;
}
if (0.RangeToExclusive(Tastudio.CurrentTasMovie.InputLogLength).Contains(f))
if (f >= 0)
{
Tastudio.GoToFrame(f);
}