From 96c33a0b927a83fb7a4bc896edeaab50c57c7cb6 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Tue, 11 Feb 2025 12:20:52 -0600 Subject: [PATCH] misc: chore: [ci skip] AppletMetadata: Use previously retrieved content path --- src/Ryujinx/Utilities/AppletMetadata.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx/Utilities/AppletMetadata.cs b/src/Ryujinx/Utilities/AppletMetadata.cs index a165487a3..50f01b4c0 100644 --- a/src/Ryujinx/Utilities/AppletMetadata.cs +++ b/src/Ryujinx/Utilities/AppletMetadata.cs @@ -45,7 +45,7 @@ namespace Ryujinx.Ava.Utilities if (string.IsNullOrEmpty(contentPath)) goto BadData; - appData = new() { Name = Name, Id = ProgramId, Path = GetContentPath(contentManager) }; + appData = new() { Name = Name, Id = ProgramId, Path = contentPath }; appControl = StructHelpers.CreateCustomNacpData(Name, Version); return true;