From 9a440d03016692d88f1a047b5aa81d5db7069653 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sat, 28 Sep 2024 18:00:50 +1000 Subject: [PATCH] Add missing syncsetting check to `Gameboy.FrameAdvancePrep` (Gambatte) see #4057 --- .../Consoles/Nintendo/Gameboy/Gambatte.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index f667fa36af..e6c18eb3c4 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -450,7 +450,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy CurrentButtons = (LibGambatte.Buttons)b; - RemoteCommand = (byte)controller.AxisValue("Remote Command"); + RemoteCommand = _syncSettings.EnableRemote + ? (byte) controller.AxisValue("Remote Command") + : default(byte); // the controller callback will set this to false if it actually gets called during the frame IsLagFrame = true;