Core: fix jump in CX86RecompilerOps::CompileSystemCheck

This commit is contained in:
zilmar 2024-12-27 09:02:37 +10:30
parent f014691592
commit c7d8a70a4d
1 changed files with 1 additions and 1 deletions

View File

@ -9490,7 +9490,7 @@ void CX86RecompilerOps::CompileSystemCheck(uint32_t TargetPC, const CRegInfo & R
{
m_Assembler.CompConstByteToVariable((void *)&m_SystemEvents.DoSomething(), "m_SystemEvents.DoSomething()", 0);
asmjit::Label Jump = m_Assembler.newLabel();
m_Assembler.JeLabel8("Continue_From_Interrupt_Test", Jump);
m_Assembler.JeLabel("Continue_From_Interrupt_Test", Jump);
if (TargetPC != (uint32_t)-1)
{
m_Assembler.MoveConstToVariable(&g_Reg->m_PROGRAM_COUNTER, "PROGRAM_COUNTER", TargetPC);