diff options
| author | 2024-01-08 00:49:00 -0500 | |
|---|---|---|
| committer | 2024-01-11 11:28:52 -0500 | |
| commit | aae9eea53208fc0924c90ebb1272fcfaa3f23e0c (patch) | |
| tree | 050ccc76dd2fad3c3f81197aa6435674caeac86f /src/core/loader/nsp.cpp | |
| parent | Merge pull request #12608 from szepeviktor/typos (diff) | |
| download | yuzu-aae9eea53208fc0924c90ebb1272fcfaa3f23e0c.tar.gz yuzu-aae9eea53208fc0924c90ebb1272fcfaa3f23e0c.tar.xz yuzu-aae9eea53208fc0924c90ebb1272fcfaa3f23e0c.zip | |
fsp-srv: use program registry for SetCurrentProcess
Diffstat (limited to 'src/core/loader/nsp.cpp')
| -rw-r--r-- | src/core/loader/nsp.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/loader/nsp.cpp b/src/core/loader/nsp.cpp index f4ab75b77..28116ff3a 100644 --- a/src/core/loader/nsp.cpp +++ b/src/core/loader/nsp.cpp | |||
| @@ -111,7 +111,8 @@ AppLoader_NSP::LoadResult AppLoader_NSP::Load(Kernel::KProcess& process, Core::S | |||
| 111 | 111 | ||
| 112 | FileSys::VirtualFile update_raw; | 112 | FileSys::VirtualFile update_raw; |
| 113 | if (ReadUpdateRaw(update_raw) == ResultStatus::Success && update_raw != nullptr) { | 113 | if (ReadUpdateRaw(update_raw) == ResultStatus::Success && update_raw != nullptr) { |
| 114 | system.GetFileSystemController().SetPackedUpdate(std::move(update_raw)); | 114 | system.GetFileSystemController().SetPackedUpdate(process.GetProcessId(), |
| 115 | std::move(update_raw)); | ||
| 115 | } | 116 | } |
| 116 | 117 | ||
| 117 | is_loaded = true; | 118 | is_loaded = true; |