From 234cb99325bd891073d422bab7a872b8f492417f Mon Sep 17 00:00:00 2001 From: GreemDev Date: Sat, 23 Aug 2025 23:50:13 -0500 Subject: [PATCH] [ci skip] chore: minor nitpick: Use passed dlc IDs array instead of the field --- src/Ryujinx/UI/ViewModels/ModManagerViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx/UI/ViewModels/ModManagerViewModel.cs b/src/Ryujinx/UI/ViewModels/ModManagerViewModel.cs index 1d65ba336..abfe5a4c5 100644 --- a/src/Ryujinx/UI/ViewModels/ModManagerViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/ModManagerViewModel.cs @@ -91,7 +91,7 @@ namespace Ryujinx.Ava.UI.ViewModels bool inSd = path == ModLoader.GetSdModsBasePath(); ModLoader.ModCache modCache = new(); - ModLoader.QueryContentsDir(modCache, new DirectoryInfo(Path.Combine(path, "contents")), applicationId, _installedDlcIds); + ModLoader.QueryContentsDir(modCache, new DirectoryInfo(Path.Combine(path, "contents")), applicationId, installedDlcIds); foreach (ModLoader.Mod mod in modCache.RomfsDirs) {