diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-12-13 04:30:27 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-13 08:30:27 +0100 |
| commit | 19d18662ea3ed5470898ed2b7bbb06d45f6004dd (patch) | |
| tree | 21ceeba0aee0fca1729ced4cf7c86bd9c7ff7ad2 /Ryujinx.HLE/HOS/Services | |
| parent | ef157bbe263e60b2e9c3259e5aee20a297c5f5bc (diff) | |
Correct type of executable sizes (#1802)
Diffstat (limited to 'Ryujinx.HLE/HOS/Services')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs b/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs index c78634fa..f31d8bde 100644 --- a/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs +++ b/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs @@ -187,7 +187,7 @@ namespace Ryujinx.HLE.HOS.Services.Ro return ResultCode.InvalidNro; } - int totalSize = nro.Text.Length + nro.Ro.Length + nro.Data.Length + nro.BssSize; + uint totalSize = (uint)nro.Text.Length + (uint)nro.Ro.Length + (uint)nro.Data.Length + nro.BssSize; // Apply patches context.Device.FileSystem.ModLoader.ApplyNroPatches(nro); |
