mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-12-22 03:46:39 +01:00
Compare commits
2 commits
70f63ec733
...
1de47494f1
Author | SHA1 | Date | |
---|---|---|---|
|
1de47494f1 | ||
|
58ca0008ed |
2 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ namespace Ryujinx.HLE.FileSystem
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
string ncaId = BitConverter.ToString(entry.NcaId).Replace("-", null).ToLower();
|
string ncaId = Convert.ToHexStringLower(entry.NcaId).Replace("-", null);
|
||||||
Nca nca = _pfs.GetNca(keySet, $"/{ncaId}.nca");
|
Nca nca = _pfs.GetNca(keySet, $"/{ncaId}.nca");
|
||||||
|
|
||||||
if (nca.GetProgramIndex() == programIndex)
|
if (nca.GetProgramIndex() == programIndex)
|
||||||
|
|
|
@ -164,7 +164,7 @@ namespace Ryujinx.UI.App.Common
|
||||||
NsoReader reader = new();
|
NsoReader reader = new();
|
||||||
reader.Initialize(nsoFile.Release().AsStorage().AsFile(OpenMode.Read)).ThrowIfFailure();
|
reader.Initialize(nsoFile.Release().AsStorage().AsFile(OpenMode.Read)).ThrowIfFailure();
|
||||||
|
|
||||||
return BitConverter.ToString(reader.Header.ModuleId.ItemsRo.ToArray()).Replace("-", string.Empty).ToUpper()[..16];
|
return Convert.ToHexString(reader.Header.ModuleId.ItemsRo.ToArray()).Replace("-", string.Empty).ToUpper()[..16];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue