mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Fixed ce breakpoint deletion
This commit is contained in:
parent
c6399519c8
commit
d17da427bc
1 changed files with 2 additions and 0 deletions
|
@ -658,6 +658,7 @@ void CeDebugger::DeleteBreakpoint(Breakpoint* breakpoint)
|
|||
mBreakpoints.Remove((CeBreakpoint*)breakpoint);
|
||||
delete breakpoint;
|
||||
ClearBreakpointCache();
|
||||
mBreakpointVersion++;
|
||||
}
|
||||
|
||||
void CeDebugger::DetachBreakpoint(Breakpoint* breakpoint)
|
||||
|
@ -669,6 +670,7 @@ void CeDebugger::MoveBreakpoint(Breakpoint* breakpoint, int lineNum, int wantCol
|
|||
breakpoint->mLineNum = lineNum;
|
||||
breakpoint->mColumn = wantColumn;
|
||||
ClearBreakpointCache();
|
||||
mBreakpointVersion++;
|
||||
}
|
||||
|
||||
void CeDebugger::MoveMemoryBreakpoint(Breakpoint* breakpoint, intptr addr, int byteCount)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue