diff options
| author | 2019-09-22 16:24:42 +1000 | |
|---|---|---|
| committer | 2019-09-22 16:24:42 +1000 | |
| commit | 9187350b322c3140c2bec3938b91289ab55e9aae (patch) | |
| tree | c2f9d045cee2bb87b1182ae93d5072b416b1b87c /src/core/loader/nso.cpp | |
| parent | Merge pull request #2709 from DarkLordZach/oss-ext-fonts-1 (diff) | |
| parent | dmnt_cheat_vm: Default initialize structure values (diff) | |
| download | yuzu-9187350b322c3140c2bec3938b91289ab55e9aae.tar.gz yuzu-9187350b322c3140c2bec3938b91289ab55e9aae.tar.xz yuzu-9187350b322c3140c2bec3938b91289ab55e9aae.zip | |
Merge pull request #2535 from DarkLordZach/cheat-v2
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 70c90109f..e75c700ad 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, | |||
| 152 | auto& system = Core::System::GetInstance(); | 152 | auto& system = Core::System::GetInstance(); |
| 153 | const auto cheats = pm->CreateCheatList(system, nso_header.build_id); | 153 | const auto cheats = pm->CreateCheatList(system, nso_header.build_id); |
| 154 | if (!cheats.empty()) { | 154 | if (!cheats.empty()) { |
| 155 | system.RegisterCheatList(cheats, Common::HexToString(nso_header.build_id), load_base, | 155 | system.RegisterCheatList(cheats, nso_header.build_id, load_base, image_size); |
| 156 | load_base + program_image.size()); | ||
| 157 | } | 156 | } |
| 158 | } | 157 | } |
| 159 | 158 | ||