Nit.
This commit is contained in:
parent
315aac0b9e
commit
56a23a8543
1 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ namespace Ryujinx.HLE.HOS.Services.Account.Acc
|
||||||
|
|
||||||
foreach (UserProfile userProfile in profiles)
|
foreach (UserProfile userProfile in profiles)
|
||||||
{
|
{
|
||||||
if (offset + 0x10UL > (ulong)outputSize)
|
if (offset + 0x10 > (ulong)outputSize)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -78,7 +78,7 @@ namespace Ryujinx.HLE.HOS.Services.Account.Acc
|
||||||
context.Memory.WriteInt64(outputPosition + (long)offset, userProfile.UserId.Low);
|
context.Memory.WriteInt64(outputPosition + (long)offset, userProfile.UserId.Low);
|
||||||
context.Memory.WriteInt64(outputPosition + (long)offset + 8L, userProfile.UserId.High);
|
context.Memory.WriteInt64(outputPosition + (long)offset + 8L, userProfile.UserId.High);
|
||||||
|
|
||||||
offset += 0x10UL;
|
offset += 0x10;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ResultCode.Success;
|
return ResultCode.Success;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue