diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2019-09-22 16:24:42 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-22 16:24:42 +1000 |
commit | 9187350b322c3140c2bec3938b91289ab55e9aae (patch) | |
tree | c2f9d045cee2bb87b1182ae93d5072b416b1b87c /src/core/loader/nso.cpp | |
parent | fa1c60c33ef88c6cd0b72da46842dc9098db712d (diff) | |
parent | 2bddc0346815bf5e893ad9611d89dbb0d511e32f (diff) |
Merge pull request #2535 from DarkLordZach/cheat-v2mainline-630
cheat_engine: Use Atmosphere's Cheat VM and fix cheat crash
Diffstat (limited to 'src/core/loader/nso.cpp')
-rw-r--r-- | src/core/loader/nso.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/loader/nso.cpp b/src/core/loader/nso.cpp index 70c90109f3..e75c700ad1 100644 --- a/src/core/loader/nso.cpp +++ b/src/core/loader/nso.cpp @@ -152,8 +152,7 @@ std::optional<VAddr> AppLoader_NSO::LoadModule(Kernel::Process& process, auto& system = Core::System::GetInstance(); const auto cheats = pm->CreateCheatList(system, nso_header.build_id); if (!cheats.empty()) { - system.RegisterCheatList(cheats, Common::HexToString(nso_header.build_id), load_base, - load_base + program_image.size()); + system.RegisterCheatList(cheats, nso_header.build_id, load_base, image_size); } } |