summaryrefslogtreecommitdiffstats
path: root/src/core/memory/cheat_engine.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-07-22 17:17:36 +0200
committerGitHub <noreply@github.com>2023-07-22 17:17:36 +0200
commitb1aed2c5b79dc8c3ba858e21308312a5dc10dd2f (patch)
tree14f41563aac7e5513bad341805afb164f1bf2f4f /src/core/memory/cheat_engine.cpp
parentMerge pull request #11098 from GPUCode/texel-buffers (diff)
parentkernel: reduce page table region checking (diff)
downloadyuzu-b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f.tar
yuzu-b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f.tar.gz
yuzu-b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f.tar.bz2
yuzu-b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f.tar.lz
yuzu-b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f.tar.xz
yuzu-b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f.tar.zst
yuzu-b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f.zip
Diffstat (limited to 'src/core/memory/cheat_engine.cpp')
-rw-r--r--src/core/memory/cheat_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/memory/cheat_engine.cpp b/src/core/memory/cheat_engine.cpp
index 8742dd164..7b52f61a7 100644
--- a/src/core/memory/cheat_engine.cpp
+++ b/src/core/memory/cheat_engine.cpp
@@ -199,7 +199,7 @@ void CheatEngine::Initialize() {
metadata.process_id = system.ApplicationProcess()->GetProcessId();
metadata.title_id = system.GetApplicationProcessProgramID();
- const auto& page_table = system.ApplicationProcess()->PageTable();
+ const auto& page_table = system.ApplicationProcess()->GetPageTable();
metadata.heap_extents = {
.base = GetInteger(page_table.GetHeapRegionStart()),
.size = page_table.GetHeapRegionSize(),