diff --git a/README.md b/README.md index c0b97fee7..35f181a03 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 4008. +This is the source code for early-access 4009. ## Legal Notice diff --git a/src/core/arm/nce/patcher.cpp b/src/core/arm/nce/patcher.cpp index f97b909df..47a7a8880 100755 --- 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);