From 3d48376436573e6312a6b8b129babdb5a6e7a892 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 6 Jun 2020 10:37:13 -0500 Subject: [PATCH] InputManager - lock down RewrireInputChain, and have calling code only call SyncControls --- src/BizHawk.Client.Common/inputAdapters/InputManager.cs | 2 +- src/BizHawk.Client.EmuHawk/MainForm.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/inputAdapters/InputManager.cs b/src/BizHawk.Client.Common/inputAdapters/InputManager.cs index 52a512349e..f4497d262b 100644 --- a/src/BizHawk.Client.Common/inputAdapters/InputManager.cs +++ b/src/BizHawk.Client.Common/inputAdapters/InputManager.cs @@ -51,7 +51,7 @@ namespace BizHawk.Client.Common public Controller ClientControls { get; set; } - public void RewireInputChain() + private void RewireInputChain() { ControllerInputCoalescer.Clear(); ControllerInputCoalescer.Definition = ActiveController.Definition; diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index c922ccb267..be622592a3 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -413,7 +413,7 @@ namespace BizHawk.Client.EmuHawk } Sound.StartSound(); - InputManager.RewireInputChain(); + InputManager.SyncControls(Emulator, Config); RewireSound(); // Workaround for windows, location is -32000 when minimized, if they close it during this time, that's what gets saved