summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar Zach Hilman2019-03-05 10:09:27 -0500
committerGravatar Zach Hilman2019-03-05 10:09:36 -0500
commit52ac6419dafb84b10369226d3746b3b5b761d33b (patch)
tree008c14ba2e019b86128e6168ad49a3a1eafa6ba8 /src/core/core.cpp
parentcore: Add support for registering and controlling ownership of CheatEngine (diff)
downloadyuzu-52ac6419dafb84b10369226d3746b3b5b761d33b.tar.gz
yuzu-52ac6419dafb84b10369226d3746b3b5b761d33b.tar.xz
yuzu-52ac6419dafb84b10369226d3746b3b5b761d33b.zip
vm_manager: Remove cheat-specific ranges from VMManager
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index ce53ef758..32c5b112d 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -450,8 +450,10 @@ Tegra::DebugContext* System::GetGPUDebugContext() const {
450} 450}
451 451
452void System::RegisterCheatList(const std::vector<FileSys::CheatList>& list, 452void System::RegisterCheatList(const std::vector<FileSys::CheatList>& list,
453 const std::string& build_id) { 453 const std::string& build_id, VAddr code_region_start,
454 impl->cheat_engine = std::make_unique<FileSys::CheatEngine>(list, build_id); 454 VAddr code_region_end) {
455 impl->cheat_engine =
456 std::make_unique<FileSys::CheatEngine>(list, build_id, code_region_start, code_region_end);
455} 457}
456 458
457void System::SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs) { 459void System::SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs) {