From 942d50d521d881a7ce2e78b4563df423aa017b36 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 30 Jun 2013 16:07:38 -0700 Subject: [PATCH] When hitting go on a memcheck, also skip it. If you hit go you most likely want it to continue past the instruction you were on. --- Core/MIPS/x86/Jit.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Core/MIPS/x86/Jit.cpp b/Core/MIPS/x86/Jit.cpp index 188d7247fb..acb3d73fdc 100644 --- a/Core/MIPS/x86/Jit.cpp +++ b/Core/MIPS/x86/Jit.cpp @@ -708,6 +708,10 @@ void Jit::JitSafeMem::Finish() void JitMemCheck(u32 addr, int size, int isWrite) { + // Should we skip this breakpoint? + if (CBreakPoints::CheckSkipFirst() == currentMIPS->pc) + return; + MemCheck *check = CBreakPoints::GetMemCheck(addr, size); if (check) check->Action(addr, isWrite == 1, size, currentMIPS->pc);