summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
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 {
460void System::RegisterCheatList(const std::vector<FileSys::CheatList>& list, 460void System::RegisterCheatList(const std::vector<FileSys::CheatList>& list,
461 const std::string& build_id, VAddr code_region_start, 461 const std::string& build_id, VAddr code_region_start,
462 VAddr code_region_end) { 462 VAddr code_region_end) {
463 impl->cheat_engine = 463 impl->cheat_engine = std::make_unique<FileSys::CheatEngine>(*this, list, build_id,
464 std::make_unique<FileSys::CheatEngine>(list, build_id, code_region_start, code_region_end); 464 code_region_start, code_region_end);
465} 465}
466 466
467void System::SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs) { 467void System::SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs) {