summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2023-06-18 01:38:13 +0200
committerGitHub <noreply@github.com>2023-06-18 01:38:13 +0200
commit44498872e9dbf0c3d14397df2b4255ac2efe0f11 (patch)
tree526a15ec31e799235ea62366b6f4eb8bdd80026b /Source
parent93d9e90798fd1e3a25f378a2c46a74643f6944fc (diff)
parentb71304230cb7030eb8810c864410904e70747416 (diff)
Merge pull request #11969 from AdmiralCurtiss/thats-no-bool
Jit64: Fix trampolines after #11834.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}