diff options
author | gdkchan <gab.dark.100@gmail.com> | 2019-01-01 14:01:44 -0300 |
---|---|---|
committer | gdkchan <gab.dark.100@gmail.com> | 2019-01-01 14:01:44 -0300 |
commit | 016156c288e4409d84e75ec77ee4fecb20b13c00 (patch) | |
tree | 6b9a80395cdae903bc63d9edb9cb403df33f29e4 /Ryujinx.HLE/FileSystem/Content/ContentManager.cs | |
parent | 8dcfeb64a33713444ad6f27be563d7e668d2bfcb (diff) |
This kind of thing drives me crazy
Diffstat (limited to 'Ryujinx.HLE/FileSystem/Content/ContentManager.cs')
-rw-r--r-- | Ryujinx.HLE/FileSystem/Content/ContentManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/FileSystem/Content/ContentManager.cs b/Ryujinx.HLE/FileSystem/Content/ContentManager.cs index 0b3bfe00..a20157ce 100644 --- a/Ryujinx.HLE/FileSystem/Content/ContentManager.cs +++ b/Ryujinx.HLE/FileSystem/Content/ContentManager.cs @@ -141,7 +141,7 @@ namespace Ryujinx.HLE.FileSystem.Content } } - public void ClearEntry(long titleId, ContentType contentType,StorageId storageId) + public void ClearEntry(long titleId, ContentType contentType, StorageId storageId) { RemoveLocationEntry(titleId, contentType, storageId); } @@ -295,7 +295,7 @@ namespace Ryujinx.HLE.FileSystem.Content return _sharedFontTitleDictionary.TryGetValue(fontName, out titleId); } - private LocationEntry GetLocation(long titleId, ContentType contentType,StorageId storageId) + private LocationEntry GetLocation(long titleId, ContentType contentType, StorageId storageId) { LinkedList<LocationEntry> locationList = _locationEntries[storageId]; |