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