fix style

This commit is contained in:
emmaus 2018-11-18 07:34:24 +00:00
commit 452564aed2

View file

@ -20,7 +20,6 @@ namespace Ryujinx.HLE.FileSystem.Content
public ContentManager(Switch Device)
{
ContentDictionary = new SortedDictionary<(ulong, ContentType), string>();
LocationEntries = new Dictionary<StorageId, LinkedList<LocationEntry>>();
SharedFontTitleDictionary = new Dictionary<string, long>()
@ -50,7 +49,6 @@ namespace Ryujinx.HLE.FileSystem.Content
{
ContentPathString = LocationHelper.GetContentRoot(StorageId);
ContentDirectory = LocationHelper.GetRealPath(Device.FileSystem, ContentPathString);
RegisteredDirectory = Path.Combine(ContentDirectory, "registered");
}
catch (NotSupportedException NEx)
@ -88,7 +86,6 @@ namespace Ryujinx.HLE.FileSystem.Content
(long)Nca.Header.TitleId,
Nca.Header.ContentType);
AddEntry(Entry);
ContentDictionary.Add((Nca.Header.TitleId, Nca.Header.ContentType), NcaName);