Add missing syncsetting check to `Gameboy.FrameAdvancePrep` (Gambatte)
see #4057
This commit is contained in:
parent
444d1b2182
commit
9a440d0301
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue