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.cs19
1 files changed, 8 insertions, 11 deletions
diff --git a/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs b/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs
index c7c6133b..eabcfed8 100644
--- a/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs
+++ b/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs
@@ -1,7 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using LibHac;
+using LibHac;
namespace Ryujinx.HLE.FileSystem.Content
{
@@ -12,17 +9,17 @@ namespace Ryujinx.HLE.FileSystem.Content
public long TitleId { get; private set; }
public ContentType ContentType { get; private set; }
- 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;
}
}
}