Jit64: Fix trampolines after #11834.

This commit is contained in:
Admiral H. Curtiss 2023-06-18 01:31:06 +02:00
parent 93d9e90798
commit b71304230c
No known key found for this signature in database
GPG Key ID: F051B4C4044F33FB
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}