From 440894992a21d50cfbe53b7bc2fbb937673e5fa2 Mon Sep 17 00:00:00 2001 From: zilmar Date: Thu, 24 Oct 2024 11:58:53 +1030 Subject: [PATCH] Core: remove the BreakPoint in handling ExitReason_CheckPCAlignment --- .../Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp b/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp index e15642efd..6bc69359a 100644 --- a/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp +++ b/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp @@ -9546,7 +9546,6 @@ void CX86RecompilerOps::CompileExit(uint64_t JumpPC, uint64_t TargetPC, CRegInfo m_Assembler.test(asmjit::x86::eax, 3); asmjit::Label ValidPCJump = m_Assembler.newLabel(); m_Assembler.JeLabel("", ValidPCJump); - m_Assembler.X86BreakPoint(__FILE__, __LINE__); m_Assembler.push(1); m_Assembler.MoveVariableToX86reg(asmjit::x86::edx, (void *)(((uint64_t)&g_Reg->m_PROGRAM_COUNTER) + 4), "PROGRAM_COUNTER + 4"); m_Assembler.push(asmjit::x86::edx);