From a2846ea8e6b00a18dac59c48c3bf14bae2a1ac02 Mon Sep 17 00:00:00 2001 From: feos Date: Sun, 16 Jun 2019 10:40:57 +0300 Subject: [PATCH] fix #1447 --- BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs | 6 +++--- BizHawk.Client.Common/movie/interfaces/IMovieController.cs | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs b/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs index 0fd295a010..5c49ef6f5d 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs @@ -144,10 +144,10 @@ namespace BizHawk.Client.Common _myBoolButtons[button] = Global.AutofireStickyXORAdapter.IsSticky(button); } - // float controls don't have sticky logic. but old values remain in MovieOutputHardpoint if we don't update this here - foreach (var name in Definition.FloatControls) + // float controls don't have sticky logic, so latch default value + for (int i = 0; i < Definition.FloatControls.Count; i++) { - _myFloatControls[name] = Global.AutofireStickyXORAdapter.GetFloat(name); + _myFloatControls[Definition.FloatControls[i]] = Definition.FloatRanges[i].Mid; } } diff --git a/BizHawk.Client.Common/movie/interfaces/IMovieController.cs b/BizHawk.Client.Common/movie/interfaces/IMovieController.cs index af9a76ab05..9a8edfe52b 100644 --- a/BizHawk.Client.Common/movie/interfaces/IMovieController.cs +++ b/BizHawk.Client.Common/movie/interfaces/IMovieController.cs @@ -10,6 +10,11 @@ namespace BizHawk.Client.Common void LatchFromSource(IController source); + /// + /// Used by tastudio when it appends new frames in HandleMovieAfterFrameLoop() and ExtendMovieForEdit(). + /// For buttons it latches autohold state, for analogs it latches mid value. + /// All real user input latched by LatchFromPhysical() is ignored. + /// void LatchSticky(); void SetControllersAsMnemonic(string mnemonic);