aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/FileSystem/LocationEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/FileSystem/LocationEntry.cs')
-rw-r--r--src/Ryujinx.HLE/FileSystem/LocationEntry.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Ryujinx.HLE/FileSystem/LocationEntry.cs b/src/Ryujinx.HLE/FileSystem/LocationEntry.cs
index a60c2896..dd4068aa 100644
--- a/src/Ryujinx.HLE/FileSystem/LocationEntry.cs
+++ b/src/Ryujinx.HLE/FileSystem/LocationEntry.cs
@@ -4,16 +4,16 @@ namespace Ryujinx.HLE.FileSystem
{
public struct LocationEntry
{
- public string ContentPath { get; private set; }
- public int Flag { get; private set; }
- public ulong TitleId { get; private set; }
+ public string ContentPath { get; private set; }
+ public int Flag { get; private set; }
+ public ulong TitleId { get; private set; }
public NcaContentType ContentType { get; private set; }
public LocationEntry(string contentPath, int flag, ulong titleId, NcaContentType contentType)
{
ContentPath = contentPath;
- Flag = flag;
- TitleId = titleId;
+ Flag = flag;
+ TitleId = titleId;
ContentType = contentType;
}