mirror of
https://github.com/libretro/mgba.git
synced 2024-11-27 10:11:00 +00:00
Debugger: Free watchpoints in addition to breakpoints
This commit is contained in:
parent
2666c77837
commit
c4aedfa69a
1
CHANGES
1
CHANGES
@ -38,6 +38,7 @@ Bugfixes:
|
||||
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:
|
||||
|
@ -519,6 +519,7 @@ static void _clearBreakpoint(struct CLIDebugger* debugger, struct CLIDebugVector
|
||||
}
|
||||
uint32_t address = dv->intValue;
|
||||
ARMDebuggerClearBreakpoint(&debugger->d, address);
|
||||
ARMDebuggerClearWatchpoint(&debugger->d, address);
|
||||
}
|
||||
|
||||
static void _setWatchpoint(struct CLIDebugger* debugger, struct CLIDebugVector* dv) {
|
||||
|
Loading…
Reference in New Issue
Block a user