From d900053dad7833a82dcf06a7891d78e842745b44 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sun, 5 Jul 2020 09:54:35 -0400 Subject: [PATCH] TAStudio: Allow insertion of multiple frames at end of movie (fixes #2169) --- src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 04e3670fdc..a2aa3f869a 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -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;