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) {