From 16db21fcab5e050a0e353e4576460a994ebc77fd Mon Sep 17 00:00:00 2001 From: Riyyi Date: Sat, 15 Oct 2022 11:17:05 +0200 Subject: [PATCH] Emulator: Fix predicate jump call opcodes --- src/cpu.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cpu.cpp b/src/cpu.cpp index 0c8a8f1..4c60855 100644 --- a/src/cpu.cpp +++ b/src/cpu.cpp @@ -1473,6 +1473,7 @@ void CPU::call() if (!should_call) { m_wait_cycles += 12; + return; } m_wait_cycles += 24;