Fix incorrect type

This commit is contained in:
gmh5225 2022-06-22 01:08:33 +08:00
parent 244ba4a10b
commit df29f506c9
No known key found for this signature in database
GPG Key ID: 3BBC731F40B2CEC1
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ namespace GleeBug
//delete the breakpoint from the maps
breakpoints.erase(found);
breakpointCallbacks.erase({ BreakpointType::Hardware, address });
breakpointCallbacks.erase({ BreakpointType::Memory, address });
memoryBreakpointRanges.erase(Range(address, address));
return success;
}