mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Merge pull request #12193 from malleoz/malleo/mem2_search
Debugger/Memory: Fix mem2 search
This commit is contained in:
@ -146,8 +146,7 @@ struct EffectiveAddressSpaceAccessors : Accessors
|
|||||||
|
|
||||||
// For now, limit to only mem1 and mem2 regions
|
// For now, limit to only mem1 and mem2 regions
|
||||||
// GetPointer can get confused by the locked dcache region that dolphin pins at 0xe0000000
|
// GetPointer can get confused by the locked dcache region that dolphin pins at 0xe0000000
|
||||||
u32 memory_area = (*page_physical_address) >> 24;
|
if (page_physical_address >= 0xE0000000)
|
||||||
if ((memory_area != 0x00) && (memory_area != 0x01))
|
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user