chore: [ci skip] Add more misc logging similar to the "loading content archive" line for loading a base game dump, to updates and DLC.

This commit is contained in:
GreemDev
2025-11-07 15:14:43 -06:00
parent bbad867319
commit 5a9d5ee664
2 changed files with 5 additions and 3 deletions

View File

@@ -102,11 +102,13 @@ namespace Ryujinx.HLE.Loaders.Processes.Extensions
return (false, ProcessResult.Failed);
}
(Nca updatePatchNca, Nca updateControlNca) = mainNca.GetUpdateData(device.FileSystem, device.System.FsIntegrityCheckLevel, device.Configuration.UserChannelPersistence.Index, out string _);
(Nca updatePatchNca, Nca updateControlNca) = mainNca.GetUpdateData(device.FileSystem, device.System.FsIntegrityCheckLevel, device.Configuration.UserChannelPersistence.Index, out string updatePath);
if (updatePatchNca != null)
{
patchNca = updatePatchNca;
if (updatePath != null)
Logger.Notice.PrintMsg(LogClass.Application, $"Loading update NCA from '{updatePath}'.");
}
if (updateControlNca != null)