diff options
| author | 2023-07-14 21:58:20 -0400 | |
|---|---|---|
| committer | 2023-07-14 22:33:10 -0400 | |
| commit | 474db2d8dafebffc9a16dd3c9d1d21a63fdbeddd (patch) | |
| tree | 288901313abc231a71faf3a95b24eabbca3a04d0 /src/core/memory | |
| parent | k_process: PageTable -> GetPageTable (diff) | |
| download | yuzu-474db2d8dafebffc9a16dd3c9d1d21a63fdbeddd.tar.gz yuzu-474db2d8dafebffc9a16dd3c9d1d21a63fdbeddd.tar.xz yuzu-474db2d8dafebffc9a16dd3c9d1d21a63fdbeddd.zip | |
kernel: reduce page table region checking
Diffstat (limited to 'src/core/memory')
| -rw-r--r-- | src/core/memory/cheat_engine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/memory/cheat_engine.cpp b/src/core/memory/cheat_engine.cpp index 1f87678e2..7b52f61a7 100644 --- a/src/core/memory/cheat_engine.cpp +++ b/src/core/memory/cheat_engine.cpp | |||
| @@ -177,8 +177,8 @@ std::vector<CheatEntry> TextCheatParser::Parse(std::string_view data) const { | |||
| 177 | 177 | ||
| 178 | CheatEngine::CheatEngine(System& system_, std::vector<CheatEntry> cheats_, | 178 | CheatEngine::CheatEngine(System& system_, std::vector<CheatEntry> cheats_, |
| 179 | const std::array<u8, 0x20>& build_id_) | 179 | const std::array<u8, 0x20>& build_id_) |
| 180 | : vm{std::make_unique<StandardVmCallbacks>(system_, metadata)}, cheats(std::move(cheats_)), | 180 | : vm{std::make_unique<StandardVmCallbacks>(system_, metadata)}, |
| 181 | core_timing{system_.CoreTiming()}, system{system_} { | 181 | cheats(std::move(cheats_)), core_timing{system_.CoreTiming()}, system{system_} { |
| 182 | metadata.main_nso_build_id = build_id_; | 182 | metadata.main_nso_build_id = build_id_; |
| 183 | } | 183 | } |
| 184 | 184 | ||