Input Widget - clear out conflict colors when clearing out the widget with escape

This commit is contained in:
adelikat 2012-09-17 02:20:01 +00:00
parent 71f1df97ba
commit f9b392511b
1 changed files with 5 additions and 2 deletions

View File

@ -115,6 +115,7 @@ namespace BizHawk.MultiClient
if (TempBindingStr == "Escape")
{
ClearBindings();
HideConflicts();
Increment();
return;
}
@ -240,8 +241,10 @@ namespace BizHawk.MultiClient
public void ClearBindings()
{
for (int x = 0; x < MaxBind; x++)
Bindings[x] = "";
for (int i = 0; i < MaxBind; i++)
{
Bindings[i] = "";
}
}
public void UpdateLabel()