Merge pull request #9534 from AdmiralCurtiss/chase-pointer-fix

Core/MemoryWatcher: Use appropriate memory read function in ChasePointer().
This commit is contained in:
Léo Lam 2021-02-26 01:51:31 +01:00 committed by GitHub
commit 0920097614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}