From b71304230cb7030eb8810c864410904e70747416 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sun, 18 Jun 2023 01:31:06 +0200 Subject: [PATCH] Jit64: Fix trampolines after #11834. --- Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp b/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp index 745f773bc1..04036e11ab 100644 --- a/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp +++ b/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp @@ -61,7 +61,7 @@ void EmuCodeBlock::MemoryExceptionCheck() if (js.trampolineExceptionHandler) { TEST(32, PPCSTATE(Exceptions), Gen::Imm32(EXCEPTION_DSI)); - J_CC(CC_NZ, js.trampolineExceptionHandler ? Jump::Near : Jump::Short); + J_CC(CC_NZ, js.trampolineExceptionHandler); } return; }