Add missing syncsetting check to `Gameboy.FrameAdvancePrep` (Gambatte)

see #4057
This commit is contained in:
YoshiRulz 2024-09-28 18:00:50 +10:00
parent 444d1b2182
commit 9a440d0301
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 1 deletions

View File

@ -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;