mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -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:
@ -81,7 +81,7 @@ public:
|
||||
|
||||
// memory breakpoint
|
||||
TMemCheck* GetMemCheck(u32 address, size_t size = 1);
|
||||
bool OverlapsMemcheck(u32 address, u32 length);
|
||||
bool OverlapsMemcheck(u32 address, u32 length) const;
|
||||
void Remove(u32 address);
|
||||
|
||||
void Clear() { m_mem_checks.clear(); }
|
||||
|
Reference in New Issue
Block a user