aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-12-04 22:52:39 -0200
committerGitHub <noreply@github.com>2018-12-04 22:52:39 -0200
commit3615a70cae3f89197fe185dfc5d0a47fa42151d9 (patch)
tree8e4737422fba15199c1a6ce7c6345996c0e907b5 /Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs
parent85dbb9559ad317a657dafd24da27fec4b3f5250f (diff)
Revert "Adjust naming conventions and general refactoring in HLE Project (#490)" (#526)
This reverts commit 85dbb9559ad317a657dafd24da27fec4b3f5250f.
Diffstat (limited to 'Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs')
-rw-r--r--Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs28
1 files changed, 14 insertions, 14 deletions
diff --git a/Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs b/Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs
index d349f26b..707be603 100644
--- a/Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs
+++ b/Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs
@@ -7,36 +7,36 @@ namespace Ryujinx.HLE.Loaders.Npdm
{
class ServiceAccessControl
{
- public IReadOnlyDictionary<string, bool> Services { get; }
+ public IReadOnlyDictionary<string, bool> Services { get; private set; }
- public ServiceAccessControl(Stream stream, int offset, int size)
+ public ServiceAccessControl(Stream Stream, int Offset, int Size)
{
- stream.Seek(offset, SeekOrigin.Begin);
+ Stream.Seek(Offset, SeekOrigin.Begin);
- BinaryReader reader = new BinaryReader(stream);
+ BinaryReader Reader = new BinaryReader(Stream);
- int byteReaded = 0;
+ int ByteReaded = 0;
- Dictionary<string, bool> services = new Dictionary<string, bool>();
+ Dictionary<string, bool> Services = new Dictionary<string, bool>();
- while (byteReaded != size)
+ while (ByteReaded != Size)
{
- byte controlByte = reader.ReadByte();
+ byte ControlByte = Reader.ReadByte();
- if (controlByte == 0)
+ if (ControlByte == 0)
{
break;
}
- int length = (controlByte & 0x07) + 1;
- bool registerAllowed = (controlByte & 0x80) != 0;
+ int Length = (ControlByte & 0x07) + 1;
+ bool RegisterAllowed = (ControlByte & 0x80) != 0;
- services.Add(Encoding.ASCII.GetString(reader.ReadBytes(length), 0, length), registerAllowed);
+ Services.Add(Encoding.ASCII.GetString(Reader.ReadBytes(Length), 0, Length), RegisterAllowed);
- byteReaded += length + 1;
+ ByteReaded += Length + 1;
}
- Services = new ReadOnlyDictionary<string, bool>(services);
+ this.Services = new ReadOnlyDictionary<string, bool>(Services);
}
}
}