aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-12-13 04:30:27 -0300
committerGitHub <noreply@github.com>2020-12-13 08:30:27 +0100
commit19d18662ea3ed5470898ed2b7bbb06d45f6004dd (patch)
tree21ceeba0aee0fca1729ced4cf7c86bd9c7ff7ad2 /Ryujinx.HLE/Loaders/Executables/IExecutable.cs
parentef157bbe263e60b2e9c3259e5aee20a297c5f5bc (diff)
Correct type of executable sizes (#1802)
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