mirror of https://github.com/x64dbg/GleeBug
Fix incorrect type
This commit is contained in:
parent
244ba4a10b
commit
df29f506c9
|
|
@ -403,7 +403,7 @@ namespace GleeBug
|
||||||
|
|
||||||
//delete the breakpoint from the maps
|
//delete the breakpoint from the maps
|
||||||
breakpoints.erase(found);
|
breakpoints.erase(found);
|
||||||
breakpointCallbacks.erase({ BreakpointType::Hardware, address });
|
breakpointCallbacks.erase({ BreakpointType::Memory, address });
|
||||||
memoryBreakpointRanges.erase(Range(address, address));
|
memoryBreakpointRanges.erase(Range(address, address));
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue