mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Actually make PPCDebugInterface::ClearAllBreakpoints have functionality.
Fairly simple - just clear the breakpoints.
This commit is contained in:
@ -108,7 +108,10 @@ void PPCDebugInterface::ClearBreakpoint(unsigned int address)
|
|||||||
PowerPC::breakpoints.Remove(address);
|
PowerPC::breakpoints.Remove(address);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PPCDebugInterface::ClearAllBreakpoints() {}
|
void PPCDebugInterface::ClearAllBreakpoints()
|
||||||
|
{
|
||||||
|
PowerPC::breakpoints.Clear();
|
||||||
|
}
|
||||||
|
|
||||||
void PPCDebugInterface::ToggleBreakpoint(unsigned int address)
|
void PPCDebugInterface::ToggleBreakpoint(unsigned int address)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user