New Controller Config - fix bug where bindings were losing input and failing to save

This commit is contained in:
adelikat 2012-11-07 13:31:38 +00:00
parent 82cae558d5
commit 122c48289a
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ namespace BizHawk.MultiClient
{
FieldInfo buttonF = ControllerConfigObject.GetType().GetField(buttons[button]);
object field = ControllerConfigObject.GetType().GetField(buttons[button]).GetValue(ControllerConfigObject);
Inputs[button].Text = field.ToString();
Inputs[button].SetBindings(field.ToString());
}
}