From 94b47787dca6a3c95eb095f06d2121ae0a971259 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Mon, 17 Aug 2020 14:56:21 -0400 Subject: [PATCH] minor cleanup This variable was used before, but I accidentally changed it out in the process of other refactoring. No behavioral difference --- .../config/ControllerConfig/ControllerConfigPanel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/config/ControllerConfig/ControllerConfigPanel.cs b/src/BizHawk.Client.EmuHawk/config/ControllerConfig/ControllerConfigPanel.cs index dbbfb63596..ce807dc77d 100644 --- a/src/BizHawk.Client.EmuHawk/config/ControllerConfig/ControllerConfigPanel.cs +++ b/src/BizHawk.Client.EmuHawk/config/ControllerConfig/ControllerConfigPanel.cs @@ -55,7 +55,7 @@ namespace BizHawk.Client.EmuHawk var bindings = _inputs[button].Bindings; if (!string.IsNullOrWhiteSpace(bindings)) { - saveTo[_buttons[button]] = _inputs[button].Bindings; + saveTo[_buttons[button]] = bindings; } else {