Просмотр исходного кода

misc: chore: [ci skip] AppletMetadata: Use previously retrieved content path

Evan Husted 1 год назад
Родитель
Сommit
96c33a0b92
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/Ryujinx/Utilities/AppletMetadata.cs

+ 1 - 1
src/Ryujinx/Utilities/AppletMetadata.cs

@@ -45,7 +45,7 @@ namespace Ryujinx.Ava.Utilities
             if (string.IsNullOrEmpty(contentPath)) 
             if (string.IsNullOrEmpty(contentPath)) 
                 goto BadData;
                 goto BadData;
 
 
-            appData = new() { Name = Name, Id = ProgramId, Path = GetContentPath(contentManager) };
+            appData = new() { Name = Name, Id = ProgramId, Path = contentPath };
             appControl = StructHelpers.CreateCustomNacpData(Name, Version);
             appControl = StructHelpers.CreateCustomNacpData(Name, Version);
             return true;
             return true;