mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-02 11:25:46 +00:00
Revert "infra: Update LibHac to v0.20.0."
This seems to have broken some mods.
This reverts commit 1d4928e859.
This commit is contained in:
@@ -59,13 +59,7 @@ namespace Ryujinx.HLE.Loaders.Processes
|
||||
|
||||
if (string.IsNullOrWhiteSpace(Name))
|
||||
{
|
||||
foreach (ApplicationControlProperty.ApplicationTitle nacpTitles in ApplicationControlProperties.Title)
|
||||
{
|
||||
if (nacpTitles.Name[0] != 0)
|
||||
continue;
|
||||
|
||||
Name = nacpTitles.NameString.ToString();
|
||||
}
|
||||
Name = Array.Find(ApplicationControlProperties.Title.ItemsRo.ToArray(), x => x.Name[0] != 0).NameString.ToString();
|
||||
}
|
||||
|
||||
DisplayVersion = ApplicationControlProperties.DisplayVersionString.ToString();
|
||||
|
||||
Reference in New Issue
Block a user