Correct type of executable sizes (#1802)
This commit is contained in:
parent
ef157bbe26
commit
19d18662ea
9 changed files with 95 additions and 77 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue