MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / RemoveMemCheck

Method RemoveMemCheck

pcsx2/DebugTools/Breakpoints.cpp:324–335  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

322}
323
324void CBreakPoints::RemoveMemCheck(BreakPointCpu cpu, u32 start, u32 end)
325{
326 // This will ruin any pending memchecks.
327 cleanupMemChecks_.clear();
328
329 const size_t mc = FindMemCheck(cpu, start, end);
330 if (mc != INVALID_MEMCHECK)
331 {
332 memChecks_.erase(memChecks_.begin() + mc);
333 Update(cpu);
334 }
335}
336
337void CBreakPoints::ChangeMemCheck(BreakPointCpu cpu, u32 start, u32 end, MemCheckCondition cond, MemCheckResult result)
338{

Callers

nothing calls this directly

Calls 3

clearMethod · 0.45
eraseMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected