diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-06-18 01:38:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-18 01:38:13 +0200 |
| commit | 44498872e9dbf0c3d14397df2b4255ac2efe0f11 (patch) | |
| tree | 526a15ec31e799235ea62366b6f4eb8bdd80026b /Source | |
| parent | 93d9e90798fd1e3a25f378a2c46a74643f6944fc (diff) | |
| parent | b71304230cb7030eb8810c864410904e70747416 (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.cpp | 2 |
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; } |
