diff options
author | Liam <byteslice@airmail.cc> | 2024-01-13 13:45:05 -0500 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2024-01-13 13:48:56 -0500 |
commit | 76880b84f9923a3fbdb53edb049d635d33de5e76 (patch) | |
tree | df4d1f2fb324bf572420da6256d69548ea0e1f68 | |
parent | aae9eea53208fc0924c90ebb1272fcfaa3f23e0c (diff) |
loader: fix homebrew nro registration
-rw-r--r-- | src/core/loader/nro.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/loader/nro.cpp b/src/core/loader/nro.cpp index 83371fcbd9..f8225d6975 100644 --- a/src/core/loader/nro.cpp +++ b/src/core/loader/nro.cpp @@ -275,12 +275,12 @@ AppLoader_NRO::LoadResult AppLoader_NRO::Load(Kernel::KProcess& process, Core::S return {ResultStatus::ErrorLoadingNRO, {}}; } - if (romfs != nullptr) { - system.GetFileSystemController().RegisterProcess( - process.GetProcessId(), {}, - std::make_unique<FileSys::RomFSFactory>(*this, system.GetContentProvider(), - system.GetFileSystemController())); - } + u64 program_id{}; + ReadProgramId(program_id); + system.GetFileSystemController().RegisterProcess( + process.GetProcessId(), program_id, + std::make_unique<FileSys::RomFSFactory>(*this, system.GetContentProvider(), + system.GetFileSystemController())); is_loaded = true; return {ResultStatus::Success, LoadParameters{Kernel::KThread::DefaultThreadPriority, |