Basic Bot - have the clear button clear out the attempts and frames values

This commit is contained in:
adelikat 2016-01-20 17:56:08 -05:00
parent e4a4a9606c
commit 36250ee782
1 changed files with 2 additions and 0 deletions

View File

@ -561,6 +561,8 @@ namespace BizHawk.Client.EmuHawk
private void ClearBestButton_Click(object sender, EventArgs e)
{
_bestBotAttempt = null;
Attempts = 0;
Frames = 0;
UpdateBestAttempt();
}