From 5803e362f9e5fee9ee06fe599444713625f49470 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Mon, 23 Sep 2024 01:58:27 +0200 Subject: [PATCH] make IsSticky implementation consistent only two inheritors and they disagree on semantics... but there's `CurrentStickies` already which gives access to buttons only --- src/BizHawk.Client.Common/inputAdapters/StickyAdapters.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Client.Common/inputAdapters/StickyAdapters.cs b/src/BizHawk.Client.Common/inputAdapters/StickyAdapters.cs index 02f64767f1..d8a235752e 100644 --- a/src/BizHawk.Client.Common/inputAdapters/StickyAdapters.cs +++ b/src/BizHawk.Client.Common/inputAdapters/StickyAdapters.cs @@ -7,7 +7,7 @@ namespace BizHawk.Client.Common { public interface IStickyAdapter : IInputAdapter { - bool IsSticky(string button); + bool IsSticky(string buttonOrAxis); } public class StickyXorAdapter : IStickyAdapter @@ -62,7 +62,7 @@ namespace BizHawk.Client.Common } } - public bool IsSticky(string button) => _buttonHolds.Contains(button); + public bool IsSticky(string buttonOrAxis) => _buttonHolds.Contains(buttonOrAxis) || _axisHolds.ContainsKey(buttonOrAxis); public void ClearStickies() { @@ -166,7 +166,7 @@ namespace BizHawk.Client.Common } } - public bool IsSticky(string button) => _boolPatterns.ContainsKey(button) || _axisPatterns.ContainsKey(button); + public bool IsSticky(string buttonOrAxis) => _boolPatterns.ContainsKey(buttonOrAxis) || _axisPatterns.ContainsKey(buttonOrAxis); public void ClearStickies() {