Fix: tastudio.setplayback would refuse to seek past the end of a movie
This commit is contained in:
parent
65e4133883
commit
2749b1b675
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue