summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-03-22 18:41:44 -0400
committerGitHub <noreply@github.com>2019-03-22 18:41:44 -0400
commit819dd93257c438a74f8abc74c3a240c4802cbf2e (patch)
tree3ba56734bd2595d7f310dd028079af31ed9fcaca /src/core/core.cpp
parente5893db3e618fd276733a24eebc0606c5fd1e7f2 (diff)
parent733cf179b84a098955f0b7296d90da0aac3ddf7b (diff)
Merge pull request #2279 from lioncash/cheat-global
file_sys/cheat_engine: Remove use of global system accessors
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index a88e332be..4fe77c25b 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -460,8 +460,8 @@ Tegra::DebugContext* System::GetGPUDebugContext() const {
void System::RegisterCheatList(const std::vector<FileSys::CheatList>& list,
const std::string& build_id, VAddr code_region_start,
VAddr code_region_end) {
- impl->cheat_engine =
- std::make_unique<FileSys::CheatEngine>(list, build_id, code_region_start, code_region_end);
+ impl->cheat_engine = std::make_unique<FileSys::CheatEngine>(*this, list, build_id,
+ code_region_start, code_region_end);
}
void System::SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs) {