Skip to content

Commit

Permalink
Debugger/Memory: Fix unable to search mem2
Browse files Browse the repository at this point in the history
  • Loading branch information
malleoz committed Sep 22, 2023
1 parent 579ccb0 commit 98dd10a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Source/Core/Core/HW/AddressSpace.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit 98dd10a

Please sign in to comment.