diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.cpp b/Source/Core/Core/Debugger/PPCDebugInterface.cpp index 8674564945..131ff307bf 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.cpp +++ b/Source/Core/Core/Debugger/PPCDebugInterface.cpp @@ -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) {