Skip to content

Commit

Permalink
Merge pull request #11969 from AdmiralCurtiss/thats-no-bool
Browse files Browse the repository at this point in the history
Jit64: Fix trampolines after #11834.
  • Loading branch information
AdmiralCurtiss committed Jun 17, 2023
2 parents 93d9e90 + b713042 commit 4449887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit 4449887

Please sign in to comment.