aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/FileSystem/ContentManager.cs
diff options
context:
space:
mode:
authorBerkan Diler <b.diler@gmx.de>2023-02-08 14:54:58 +0100
committerGitHub <noreply@github.com>2023-02-08 14:54:58 +0100
commit99fc4fa61b0eb4c02eacdf7428ae14721349dece (patch)
tree10c742080447e71780f936a8ae240484938938a3 /Ryujinx.HLE/FileSystem/ContentManager.cs
parentf6d5499a16a45347c08d444d76b1355c74194301 (diff)
Replace BitConverter.ToString(bytes).Replace("-", "") with Convert.ToHexString(bytes) (#4382)1.1.608
Diffstat (limited to 'Ryujinx.HLE/FileSystem/ContentManager.cs')
-rw-r--r--Ryujinx.HLE/FileSystem/ContentManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/FileSystem/ContentManager.cs b/Ryujinx.HLE/FileSystem/ContentManager.cs
index 9ae619ad..9f0f3a4a 100644
--- a/Ryujinx.HLE/FileSystem/ContentManager.cs
+++ b/Ryujinx.HLE/FileSystem/ContentManager.cs
@@ -229,7 +229,7 @@ namespace Ryujinx.HLE.FileSystem
continue;
}
- string ncaId = BitConverter.ToString(cnmt.ContentEntries[0].NcaId).Replace("-", "").ToLower();
+ string ncaId = Convert.ToHexString(cnmt.ContentEntries[0].NcaId).ToLower();
AddAocItem(cnmt.TitleId, containerPath, $"{ncaId}.nca", true);
}