Revert "Adjust naming conventions and general refactoring in HLE Project (#490)" (#526)

This reverts commit 85dbb9559a.
This commit is contained in:
gdkchan 2018-12-04 22:52:39 -02:00 committed by GitHub
parent 85dbb9559a
commit 3615a70cae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
299 changed files with 12276 additions and 12268 deletions

View file

@ -4,19 +4,19 @@ namespace Ryujinx.HLE.Loaders.Npdm
{
class KernelAccessControl
{
public int[] Capabilities { get; }
public int[] Capabilities { get; private set; }
public KernelAccessControl(Stream stream, int offset, int size)
public KernelAccessControl(Stream Stream, int Offset, int Size)
{
stream.Seek(offset, SeekOrigin.Begin);
Stream.Seek(Offset, SeekOrigin.Begin);
Capabilities = new int[size / 4];
Capabilities = new int[Size / 4];
BinaryReader reader = new BinaryReader(stream);
BinaryReader Reader = new BinaryReader(Stream);
for (int index = 0; index < Capabilities.Length; index++)
for (int Index = 0; Index < Capabilities.Length; Index++)
{
Capabilities[index] = reader.ReadInt32();
Capabilities[Index] = Reader.ReadInt32();
}
}
}