aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs')
-rw-r--r--src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs b/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
index 27479efe..06f6d969 100644
--- a/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
+++ b/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
@@ -6,13 +6,13 @@ namespace Ryujinx.HLE.Loaders.Executables
{
byte[] Program { get; }
Span<byte> Text { get; }
- Span<byte> Ro { get; }
+ Span<byte> Ro { get; }
Span<byte> Data { get; }
uint TextOffset { get; }
- uint RoOffset { get; }
+ uint RoOffset { get; }
uint DataOffset { get; }
- uint BssOffset { get; }
- uint BssSize { get; }
+ uint BssOffset { get; }
+ uint BssSize { get; }
}
-} \ No newline at end of file
+}