all repos — mgba @ c4aedfa69aff7c8d26e5199b006196f47fe517c3

mGBA Game Boy Advance Emulator

Debugger: Free watchpoints in addition to breakpoints
Jeffrey Pfau jeffrey@endrift.com
Wed, 22 Apr 2015 21:24:56 -0700
commit

c4aedfa69aff7c8d26e5199b006196f47fe517c3

parent

2666c7783779222663328843ce775b4d5822a72a

2 files changed, 2 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -38,6 +38,7 @@ - Debugger: Fix use-after-free in breakpoint clearing code

Misc: - Qt: Show multiplayer numbers in window title - Qt: Handle saving input settings better + - Debugger: Free watchpoints in addition to breakpoints 0.2.0: (2015-04-03) Features:
M src/debugger/cli-debugger.csrc/debugger/cli-debugger.c

@@ -519,6 +519,7 @@ return;

} uint32_t address = dv->intValue; ARMDebuggerClearBreakpoint(&debugger->d, address); + ARMDebuggerClearWatchpoint(&debugger->d, address); } static void _setWatchpoint(struct CLIDebugger* debugger, struct CLIDebugVector* dv) {