Debugger/Memory: Fix unable to search mem2

This commit is contained in:
sowens99 2023-09-21 22:30:23 -04:00
parent 579ccb0710
commit 98dd10a716
1 changed files with 1 additions and 2 deletions

View File

@ -146,8 +146,7 @@ struct EffectiveAddressSpaceAccessors : Accessors
// For now, limit to only mem1 and mem2 regions
// GetPointer can get confused by the locked dcache region that dolphin pins at 0xe0000000
u32 memory_area = (*page_physical_address) >> 24;
if ((memory_area != 0x00) && (memory_area != 0x01))
if (page_physical_address >= 0xE0000000)
{
return false;
}