Merge pull request #11969 from AdmiralCurtiss/thats-no-bool

Jit64: Fix trampolines after #11834.
This commit is contained in:
Admiral H. Curtiss 2023-06-18 01:38:13 +02:00 committed by GitHub
commit 44498872e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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