Merge yuzu-emu#12612

This commit is contained in:
yuzubot
2024-01-14 01:01:39 +00:00
parent a6e7d36f7b
commit bffc72f0bf
20 changed files with 366 additions and 276 deletions

View File

@ -111,7 +111,8 @@ AppLoader_NSP::LoadResult AppLoader_NSP::Load(Kernel::KProcess& process, Core::S
FileSys::VirtualFile update_raw;
if (ReadUpdateRaw(update_raw) == ResultStatus::Success && update_raw != nullptr) {
system.GetFileSystemController().SetPackedUpdate(std::move(update_raw));
system.GetFileSystemController().SetPackedUpdate(process.GetProcessId(),
std::move(update_raw));
}
is_loaded = true;