From 3ea0a5a2dde8425f1b7ef2cb0d97c0a3aae9ccff Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Mon, 23 Sep 2024 02:12:33 +0200 Subject: [PATCH] fix autofire sticky axes off value --- src/BizHawk.Client.Common/inputAdapters/StickyAdapters.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/inputAdapters/StickyAdapters.cs b/src/BizHawk.Client.Common/inputAdapters/StickyAdapters.cs index d8a235752e..bbd6a2a03f 100644 --- a/src/BizHawk.Client.Common/inputAdapters/StickyAdapters.cs +++ b/src/BizHawk.Client.Common/inputAdapters/StickyAdapters.cs @@ -157,7 +157,7 @@ namespace BizHawk.Client.Common { if (value.HasValue) { - pattern ??= new AutoPatternAxis(value.Value, _onFrames, 0, _offFrames); + pattern ??= new AutoPatternAxis(value.Value, _onFrames, Definition.Axes[name].Neutral, _offFrames); _axisPatterns[name] = pattern; } else