summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-22 11:08:11 +0100
committerLioncash <mathew1800@gmail.com>2019-03-22 19:43:37 +0100
commit540235bb05ecd18b958f9ef2a667d94fedca61af (patch)
tree28e3b04177a193d3e476c0610c29c5862ea63350 /src/core/core.cpp
parentMerge pull request #2234 from lioncash/mutex (diff)
downloadyuzu-540235bb05ecd18b958f9ef2a667d94fedca61af.tar
yuzu-540235bb05ecd18b958f9ef2a667d94fedca61af.tar.gz
yuzu-540235bb05ecd18b958f9ef2a667d94fedca61af.tar.bz2
yuzu-540235bb05ecd18b958f9ef2a667d94fedca61af.tar.lz
yuzu-540235bb05ecd18b958f9ef2a667d94fedca61af.tar.xz
yuzu-540235bb05ecd18b958f9ef2a667d94fedca61af.tar.zst
yuzu-540235bb05ecd18b958f9ef2a667d94fedca61af.zip
Diffstat (limited to '')
-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) {