diff options
| author | jduncanator <1518948+jduncanator@users.noreply.github.com> | 2018-11-29 13:01:19 +1100 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-11-29 00:01:19 -0200 |
| commit | 9b22e8af5ee3e0896fc5f464022579ef0713e504 (patch) | |
| tree | a80e584b75091eae7e839fdbe3548adf6b0a948c /Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs | |
| parent | 59964f667c38d9d0550a3b5ef3970433493f4991 (diff) | |
Normalize all the line endings (#518)
Diffstat (limited to 'Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs')
| -rw-r--r-- | Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs | 46 |
1 files changed, 23 insertions, 23 deletions
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(); + } + } + } +} |
