From 96328902a53734c0ec5482d4e8b935f71784f88b Mon Sep 17 00:00:00 2001 From: lioncash Date: Mon, 3 Mar 2014 13:56:28 -0500 Subject: [PATCH] Actually make PPCDebugInterface::ClearAllBreakpoints have functionality. Fairly simple - just clear the breakpoints. --- Source/Core/Core/Debugger/PPCDebugInterface.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) {