From 6c9a2e96e11a25701e2358d4d30f7d1fbad6bb0e Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Mon, 13 Jan 2025 01:44:26 +0100 Subject: [PATCH] iR3000A/iR5900: Fix dev/debug build compile. Remove JITCompileInBlock leftovers. --- pcsx2/x86/iR3000A.cpp | 2 +- pcsx2/x86/ix86-32/iR5900.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/x86/iR3000A.cpp b/pcsx2/x86/iR3000A.cpp index d65446257a7c1..4a6bfc777f53a 100644 --- a/pcsx2/x86/iR3000A.cpp +++ b/pcsx2/x86/iR3000A.cpp @@ -1561,7 +1561,7 @@ static void iopRecRecompile(const u32 startpc) s_pCurBlock = PSX_GETBLOCK(startpc); - pxAssert(s_pCurBlock->GetFnptr() == (uptr)iopJITCompile || s_pCurBlock->GetFnptr() == (uptr)iopJITCompileInBlock); + pxAssert(s_pCurBlock->GetFnptr() == (uptr)iopJITCompile); s_pCurBlockEx = recBlocks.Get(HWADDR(startpc)); diff --git a/pcsx2/x86/ix86-32/iR5900.cpp b/pcsx2/x86/ix86-32/iR5900.cpp index 336613e5521f2..ddf6af9545a65 100644 --- a/pcsx2/x86/ix86-32/iR5900.cpp +++ b/pcsx2/x86/ix86-32/iR5900.cpp @@ -2185,7 +2185,7 @@ static void recRecompile(const u32 startpc) s_pCurBlock = PC_GETBLOCK(startpc); - pxAssert(s_pCurBlock->GetFnptr() == (uptr)JITCompile || s_pCurBlock->GetFnptr() == (uptr)JITCompileInBlock); + pxAssert(s_pCurBlock->GetFnptr() == (uptr)JITCompile); s_pCurBlockEx = recBlocks.Get(HWADDR(startpc)); pxAssert(!s_pCurBlockEx || s_pCurBlockEx->startpc != HWADDR(startpc));