mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
BreakPoints: Make OverlapsMemcheck() a const member function
This doesn't modify class state, it only queries said state.
This commit is contained in:
@ -210,7 +210,7 @@ TMemCheck* MemChecks::GetMemCheck(u32 address, size_t size)
|
||||
return &*iter;
|
||||
}
|
||||
|
||||
bool MemChecks::OverlapsMemcheck(u32 address, u32 length)
|
||||
bool MemChecks::OverlapsMemcheck(u32 address, u32 length) const
|
||||
{
|
||||
if (!HasAny())
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user