From 3edd6600be7317351c441bddded2a9188166a362 Mon Sep 17 00:00:00 2001 From: ShinobiWannabe <34147391+ShinobiWannabe@users.noreply.github.com> Date: Mon, 15 Jul 2019 23:00:41 -0400 Subject: [PATCH] Fix merge issue duplicate function --- BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs b/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs index 7706dc610c..5f32d9ecc4 100644 --- a/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs +++ b/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs @@ -377,12 +377,6 @@ namespace BizHawk.Client.EmuHawk public int LastFrameAdvanced { get; set; } #endregion - public bool HasFrameAdvanced() - { - //If the emulator frame is different from the last time it tried calling - //the function then we can continue, otherwise we need to stop. - return LastFrameAdvanced != Emulator.Frame; - } #region IToolForm Implementation public bool UpdateBefore { get { return true; } } @@ -1363,11 +1357,6 @@ namespace BizHawk.Client.EmuHawk this._comparisonBotAttempt.TieBreak3 = (int)numericUpDown.Value; } - private void btnCopyBestInput_Click(object sender, EventArgs e) - { - Clipboard.SetText(BestAttemptLogLabel.Text); - } - //Copy to Clipboard private void btnCopyBestInput_Click(object sender, EventArgs e) {