mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
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.
This commit is contained in:
parent
8ee88ae5a2
commit
942d50d521
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue