From 7c661b5520dd355fedb245f860be4669f95e831a Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Thu, 20 May 2021 09:21:42 -0400 Subject: [PATCH] Autofire Controller: Latch frame number with controller latch, avoids midframe conflicts when cores update frame pre-emulation. --- .../controllers/AutofireController.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/controllers/AutofireController.cs b/src/BizHawk.Client.Common/controllers/AutofireController.cs index df00b8978d..0e4a90ca01 100644 --- a/src/BizHawk.Client.Common/controllers/AutofireController.cs +++ b/src/BizHawk.Client.Common/controllers/AutofireController.cs @@ -14,6 +14,7 @@ namespace BizHawk.Client.Common On = on < 1 ? 0 : on; Off = off < 1 ? 0 : off; _emulator = emulator; + internal_frame = _emulator.Frame; } private readonly IEmulator _emulator; @@ -25,11 +26,13 @@ namespace BizHawk.Client.Common public int On { get; set; } public int Off { get; set; } + private int internal_frame; + public ControllerDefinition Definition => _emulator.ControllerDefinition; public bool IsPressed(string button) { - var a = (_emulator.Frame - _buttonStarts[button]) % (On + Off); + var a = (internal_frame - _buttonStarts[button]) % (On + Off); return a < On && _buttons[button]; } @@ -54,6 +57,8 @@ namespace BizHawk.Client.Common /// public void LatchFromPhysical(IController controller) { + internal_frame = _emulator.Frame; + foreach (var kvp in _bindings) { foreach (var boundBtn in kvp.Value)