diff --git a/Ryujinx.HLE/Loaders/Executables/NxStaticObject.cs b/Ryujinx.HLE/Loaders/Executables/NxStaticObject.cs index d19347785f..0e4da6bcaf 100644 --- a/Ryujinx.HLE/Loaders/Executables/NxStaticObject.cs +++ b/Ryujinx.HLE/Loaders/Executables/NxStaticObject.cs @@ -11,11 +11,11 @@ namespace Ryujinx.HLE.Loaders.Executables Nso nso; public byte[] Text { get; private set; } - public byte[] Ro { get; private set; } + public byte[] Ro { get; private set; } public byte[] Data { get; private set; } public int TextOffset => (int)nso.Sections[0].MemoryOffset; - public int RoOffset => (int)nso.Sections[1].MemoryOffset; + public int RoOffset => (int)nso.Sections[1].MemoryOffset; public int DataOffset => (int)nso.Sections[2].MemoryOffset; public int BssOffset => DataOffset + Data.Length; public int BssSize => (int)nso.BssSize; @@ -24,11 +24,11 @@ namespace Ryujinx.HLE.Loaders.Executables private enum NsoFlags { IsTextCompressed = 1 << 0, - IsRoCompressed = 1 << 1, + IsRoCompressed = 1 << 1, IsDataCompressed = 1 << 2, - HasTextHash = 1 << 3, - HasRoHash = 1 << 4, - HasDataHash = 1 << 5 + HasTextHash = 1 << 3, + HasRoHash = 1 << 4, + HasDataHash = 1 << 5 } public NxStaticObject(IStorage inStorage) @@ -38,6 +38,6 @@ namespace Ryujinx.HLE.Loaders.Executables Ro = nso.Sections[1].DecompressSection(); Data = nso.Sections[2].DecompressSection(); } - + } } \ No newline at end of file