From bad27bb8f3450e772c1479746d51449f805d1709 Mon Sep 17 00:00:00 2001 From: byuu <2107894+byuu@users.noreply.github.com> Date: Mon, 5 Aug 2019 11:09:57 +0900 Subject: [PATCH] . --- bsnes/sfc/cpu/timing.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bsnes/sfc/cpu/timing.cpp b/bsnes/sfc/cpu/timing.cpp index 5fb78f92..bae67c8e 100644 --- a/bsnes/sfc/cpu/timing.cpp +++ b/bsnes/sfc/cpu/timing.cpp @@ -37,8 +37,9 @@ auto CPU::step() -> void { if(overclocking.counter < overclocking.target) { if constexpr(Synchronize) { if(configuration.hacks.coprocessor.delayedSync) return; - return synchronizeCoprocessors(); + synchronizeCoprocessors(); } + return; } }