Actually make PPCDebugInterface::ClearAllBreakpoints have functionality.

Fairly simple - just clear the breakpoints.
This commit is contained in:
lioncash 2014-03-03 13:56:28 -05:00 committed by Lioncash
parent e5b250fa79
commit 96328902a5
1 changed files with 4 additions and 1 deletions

View File

@ -108,7 +108,10 @@ void PPCDebugInterface::ClearBreakpoint(unsigned int address)
PowerPC::breakpoints.Remove(address);
}
void PPCDebugInterface::ClearAllBreakpoints() {}
void PPCDebugInterface::ClearAllBreakpoints()
{
PowerPC::breakpoints.Clear();
}
void PPCDebugInterface::ToggleBreakpoint(unsigned int address)
{