Actually make PPCDebugInterface::ClearAllBreakpoints have functionality.
Fairly simple - just clear the breakpoints.
This commit is contained in:
parent
e5b250fa79
commit
96328902a5
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue