From c8d6ef062860a2e7b262a6f771cbcab7da06d911 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 19 May 2017 14:17:25 -0500 Subject: [PATCH] since Global.AutofireNullControlls was only being used by Mainform, move it there instead of having in Globals --- BizHawk.Client.Common/Global.cs | 2 -- BizHawk.Client.EmuHawk/MainForm.cs | 8 +++++--- BizHawk.Client.MultiHawk/Mainform.cs | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/BizHawk.Client.Common/Global.cs b/BizHawk.Client.Common/Global.cs index 9356f99f3b..e30c506a2d 100644 --- a/BizHawk.Client.Common/Global.cs +++ b/BizHawk.Client.Common/Global.cs @@ -28,8 +28,6 @@ namespace BizHawk.Client.Common /// public static int SoundMaxBufferDeficitMs; - public static AutofireController AutofireNullControls; - // the movie will be spliced inbetween these if it is present public static readonly CopyControllerAdapter MovieInputSourceAdapter = new CopyControllerAdapter(); public static readonly CopyControllerAdapter MovieOutputHardpoint = new CopyControllerAdapter(); diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index d3060105d0..97a3a1772a 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -290,7 +290,7 @@ namespace BizHawk.Client.EmuHawk CoreFileProvider.SyncCoreCommInputSignals(comm); Emulator = new NullEmulator(comm, Global.Config.GetCoreSettings()); Global.ActiveController = new Controller(NullController.Instance.Definition); - Global.AutoFireController = Global.AutofireNullControls; + Global.AutoFireController = AutofireNullControls; Global.AutofireStickyXORAdapter.SetOnOffPatternFromConfig(); try { GlobalWin.Sound = new Sound(Handle); } catch @@ -1359,6 +1359,8 @@ namespace BizHawk.Client.EmuHawk private IVideoWriter _currAviWriter; private HashSet _currAviWriterFrameList; + private AutofireController AutofireNullControls; + // Sound refator TODO: we can enforce async mode here with a property that gets/sets this but does an async check private ISoundProvider _aviSoundInputAsync; // Note: This sound provider must be in async mode! @@ -1779,7 +1781,7 @@ namespace BizHawk.Client.EmuHawk } Global.ClientControls = controls; - Global.AutofireNullControls = new AutofireController(NullController.Instance.Definition, Emulator); + AutofireNullControls = new AutofireController(NullController.Instance.Definition, Emulator); } @@ -3710,7 +3712,7 @@ namespace BizHawk.Client.EmuHawk CoreFileProvider.SyncCoreCommInputSignals(coreComm); Emulator = new NullEmulator(coreComm, Global.Config.GetCoreSettings()); Global.ActiveController = new Controller(NullController.Instance.Definition); - Global.AutoFireController = Global.AutofireNullControls; + Global.AutoFireController = AutofireNullControls; RewireSound(); RebootStatusBarIcon.Visible = false; GameIsClosing = false; diff --git a/BizHawk.Client.MultiHawk/Mainform.cs b/BizHawk.Client.MultiHawk/Mainform.cs index 7ff20054db..3001f38423 100644 --- a/BizHawk.Client.MultiHawk/Mainform.cs +++ b/BizHawk.Client.MultiHawk/Mainform.cs @@ -86,7 +86,7 @@ namespace BizHawk.Client.MultiHawk //CoreFileProvider.SyncCoreCommInputSignals(); Global.ActiveController = new Controller(NullController.Instance.Definition); - Global.AutoFireController = Global.AutofireNullControls; + Global.AutoFireController = AutofireNullControls; Global.AutofireStickyXORAdapter.SetOnOffPatternFromConfig(); Closing += (o, e) => @@ -149,7 +149,7 @@ namespace BizHawk.Client.MultiHawk } public EmulatorWindowList EmulatorWindows = new EmulatorWindowList(); - + private AutofireController AutofireNullControls; private bool _exit; protected override void OnClosed(EventArgs e) @@ -199,7 +199,7 @@ namespace BizHawk.Client.MultiHawk } Global.ClientControls = controls; - Global.AutofireNullControls = new AutofireController(NullController.Instance.Definition, Emulator); + AutofireNullControls = new AutofireController(NullController.Instance.Definition, Emulator); } private void OpenRomMenuItem_Click(object sender, EventArgs e)