diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-12-05 07:51:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-05 07:51:53 -0500 |
commit | 167efb2d2bc3546fa9835ce1c20ece3ec3aa2c17 (patch) | |
tree | fc6b22a09499d5dbf6e1954fb4e1d7e176b5c6ad | |
parent | 8e0e066c3f2e5b1143bb08f45dce59f71cc54040 (diff) | |
parent | 9de99839bddfa630088c3766222a19f3674616a4 (diff) |
Merge pull request #12271 from liamwhite/pretext-fix
nce: fix pre-text patch for single modules
-rw-r--r-- | src/core/arm/nce/patcher.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/arm/nce/patcher.cpp b/src/core/arm/nce/patcher.cpp index ec8527224a..bdaa3af49f 100644 --- a/src/core/arm/nce/patcher.cpp +++ b/src/core/arm/nce/patcher.cpp @@ -28,6 +28,8 @@ Patcher::~Patcher() = default; void Patcher::PatchText(const Kernel::PhysicalMemory& program_image, const Kernel::CodeSet::Segment& code) { + // Branch to the first instruction of the module. + this->BranchToModule(0); // Write save context helper function. c.l(m_save_context); |