aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/FileSystem/Content/LocationEntry.cs')
-rw-r--r--Ryujinx.HLE/FileSystem/Content/LocationEntry.cs25
1 files changed, 11 insertions, 14 deletions
diff --git a/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs b/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs
index c7c6133b..ade2e5a8 100644
--- a/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs
+++ b/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs
@@ -1,28 +1,25 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using LibHac;
+using LibHac;
namespace Ryujinx.HLE.FileSystem.Content
{
public struct LocationEntry
{
- public string ContentPath { get; private set; }
+ public string ContentPath { get; }
public int Flag { get; private set; }
- public long TitleId { get; private set; }
- public ContentType ContentType { get; private set; }
+ public long TitleId { get; }
+ public ContentType ContentType { get; }
- public LocationEntry(string ContentPath, int Flag, long TitleId, ContentType ContentType)
+ public LocationEntry(string contentPath, int flag, long titleId, ContentType contentType)
{
- this.ContentPath = ContentPath;
- this.Flag = Flag;
- this.TitleId = TitleId;
- this.ContentType = ContentType;
+ ContentPath = contentPath;
+ Flag = flag;
+ TitleId = titleId;
+ ContentType = contentType;
}
- public void SetFlag(int Flag)
+ public void SetFlag(int flag)
{
- this.Flag = Flag;
+ Flag = flag;
}
}
}