When the frontend ui generates an empty controller bind, remove it instead of doing nothing
Fixes #2264
This commit is contained in:
parent
7adeebb59a
commit
732afe6a9e
|
@ -55,7 +55,11 @@ namespace BizHawk.Client.EmuHawk
|
|||
var bindings = _inputs[button].Bindings;
|
||||
if (!string.IsNullOrWhiteSpace(bindings))
|
||||
{
|
||||
saveTo[_buttons[button]] = bindings;
|
||||
saveTo[_buttons[button]] = _inputs[button].Bindings;
|
||||
}
|
||||
else
|
||||
{
|
||||
saveTo.Remove(_buttons[button]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue