From 9b22e8af5ee3e0896fc5f464022579ef0713e504 Mon Sep 17 00:00:00 2001 From: jduncanator <1518948+jduncanator@users.noreply.github.com> Date: Thu, 29 Nov 2018 13:01:19 +1100 Subject: Normalize all the line endings (#518) --- Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs | 46 ++++++++++++------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs') diff --git a/Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs b/Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs index cd3d3252..611eda39 100644 --- a/Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs +++ b/Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs @@ -1,23 +1,23 @@ -using System.IO; - -namespace Ryujinx.HLE.Loaders.Npdm -{ - class KernelAccessControl - { - public int[] Capabilities { get; private set; } - - public KernelAccessControl(Stream Stream, int Offset, int Size) - { - Stream.Seek(Offset, SeekOrigin.Begin); - - Capabilities = new int[Size / 4]; - - BinaryReader Reader = new BinaryReader(Stream); - - for (int Index = 0; Index < Capabilities.Length; Index++) - { - Capabilities[Index] = Reader.ReadInt32(); - } - } - } -} +using System.IO; + +namespace Ryujinx.HLE.Loaders.Npdm +{ + class KernelAccessControl + { + public int[] Capabilities { get; private set; } + + public KernelAccessControl(Stream Stream, int Offset, int Size) + { + Stream.Seek(Offset, SeekOrigin.Begin); + + Capabilities = new int[Size / 4]; + + BinaryReader Reader = new BinaryReader(Stream); + + for (int Index = 0; Index < Capabilities.Length; Index++) + { + Capabilities[Index] = Reader.ReadInt32(); + } + } + } +} -- cgit v1.2.3