From 60950f1148651c3f93bfb5c4b4e7643c1c32806b Mon Sep 17 00:00:00 2001 From: feos Date: Thu, 10 Nov 2016 00:28:41 +0300 Subject: [PATCH] tastudio paste: clipboard input would give an extra empty line after splicing for whatever reason. Iterate thorough one less line. --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs index f82fb5679c..c797048093 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs @@ -401,7 +401,7 @@ namespace BizHawk.Client.EmuHawk if (lines.Length > 0) { _tasClipboard.Clear(); - for (int i = 0; i < lines.Length; i++) + for (int i = 0; i < lines.Length - 1; i++) { var line = TasClipboardEntry.SetFromMnemonicStr(lines[i]); if (line == null) @@ -448,7 +448,7 @@ namespace BizHawk.Client.EmuHawk if (lines.Length > 0) { _tasClipboard.Clear(); - for (int i = 0; i < lines.Length; i++) + for (int i = 0; i < lines.Length - 1; i++) { var line = TasClipboardEntry.SetFromMnemonicStr(lines[i]); if (line == null)