|
|
@@ -710,9 +710,8 @@ namespace Ryujinx.HLE.FileSystem
|
|
|
{
|
|
|
updateNcasItem.Add((nca.Header.ContentType, entry.FullName));
|
|
|
}
|
|
|
- else
|
|
|
+ else if (updateNcas.TryAdd(nca.Header.TitleId, new List<(NcaContentType, string)>()))
|
|
|
{
|
|
|
- updateNcas.Add(nca.Header.TitleId, new List<(NcaContentType, string)>());
|
|
|
updateNcas[nca.Header.TitleId].Add((nca.Header.ContentType, entry.FullName));
|
|
|
}
|
|
|
}
|
|
|
@@ -898,9 +897,8 @@ namespace Ryujinx.HLE.FileSystem
|
|
|
{
|
|
|
updateNcasItem.Add((nca.Header.ContentType, entry.FullPath));
|
|
|
}
|
|
|
- else
|
|
|
+ else if (updateNcas.TryAdd(nca.Header.TitleId, new List<(NcaContentType, string)>()))
|
|
|
{
|
|
|
- updateNcas.Add(nca.Header.TitleId, new List<(NcaContentType, string)>());
|
|
|
updateNcas[nca.Header.TitleId].Add((nca.Header.ContentType, entry.FullPath));
|
|
|
}
|
|
|
|