Skip to content
Permalink
Browse files
Merge pull request #9534 from AdmiralCurtiss/chase-pointer-fix
Core/MemoryWatcher: Use appropriate memory read function in ChasePointer().
  • Loading branch information
leoetlino committed Feb 26, 2021
2 parents 1fe0953 + 22b3003 commit 0920097
Showing 1 changed file with 2 additions and 2 deletions.
@@ -8,9 +8,9 @@
#include <unistd.h>

#include "Common/FileUtil.h"
#include "Core/HW/Memmap.h"
#include "Core/HW/SystemTimers.h"
#include "Core/MemoryWatcher.h"
#include "Core/PowerPC/MMU.h"

MemoryWatcher::MemoryWatcher()
{
@@ -71,7 +71,7 @@ u32 MemoryWatcher::ChasePointer(const std::string& line)
u32 value = 0;
for (u32 offset : m_addresses[line])
{
value = Memory::Read_U32(value + offset);
value = PowerPC::HostRead_U32(value + offset);
if (!PowerPC::HostIsRAMAddress(value))
break;
}

0 comments on commit 0920097

Please sign in to comment.