From 9de99839bddfa630088c3766222a19f3674616a4 Mon Sep 17 00:00:00 2001 From: Liam Date: Sat, 2 Dec 2023 16:14:01 -0500 Subject: nce: fix pre-text patch for single modules --- src/core/arm/nce/patcher.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/arm/nce/patcher.cpp b/src/core/arm/nce/patcher.cpp index ec8527224..bdaa3af49 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); -- cgit v1.2.3