When the frontend ui generates an empty controller bind, remove it instead of doing nothing

Fixes #2264
This commit is contained in:
nattthebear 2020-08-15 13:34:23 -04:00
parent 7adeebb59a
commit 732afe6a9e
1 changed files with 5 additions and 1 deletions

View File

@ -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]);
}
}
}