mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
Debugger: Prevent margin clicks from removing range breakpoints that aren't shown in the margin
This commit is contained in:
parent
17e23462b1
commit
556b99d267
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ namespace Mesen.Debugger
|
|||
return;
|
||||
}
|
||||
|
||||
Breakpoint? breakpoint = BreakpointManager.GetMatchingForbidBreakpoint(info, cpuType) ?? BreakpointManager.GetMatchingBreakpoint(info, cpuType);
|
||||
Breakpoint? breakpoint = BreakpointManager.GetMatchingForbidBreakpoint(info, cpuType) ?? BreakpointManager.GetMatchingBreakpoint(info, cpuType, true);
|
||||
if(breakpoint != null) {
|
||||
BreakpointManager.RemoveBreakpoint(breakpoint);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue