TAStudio: Allow insertion of multiple frames at end of movie (fixes #2169)

This commit is contained in:
alyosha-tas 2020-07-05 09:54:35 -04:00
parent e4e078a1c9
commit d900053dad
1 changed files with 1 additions and 1 deletions

View File

@ -1085,7 +1085,7 @@ namespace BizHawk.Client.EmuHawk
public void InsertNumFrames(int insertionFrame, int numberOfFrames)
{
if (insertionFrame < CurrentTasMovie.InputLogLength)
if (insertionFrame <= CurrentTasMovie.InputLogLength)
{
bool needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame;