From 5e6c4a2bbd862ccdc2c64a87a614c374eb257c38 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Tue, 6 Dec 2022 19:42:30 +0100 Subject: [PATCH] fix justifier controller never working oops --- .../Consoles/Nintendo/BSNES/BsnesControllers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesControllers.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesControllers.cs index f4f3e83d86..7387c5638f 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesControllers.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesControllers.cs @@ -348,7 +348,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.BSNES { 0 => (short) controller.AxisValue($"{index}Justifier X"), 1 => (short) controller.AxisValue($"{index}Justifier Y"), - 2 or 3 => (short) (controller.IsPressed(Definition.BoolButtons[index * 2 + id]) ? 1 : 0), + 2 or 3 => (short) (controller.IsPressed(Definition.BoolButtons[index * 2 + id - 2]) ? 1 : 0), _ => 0 }; }