Nit.
This commit is contained in:
parent
56a23a8543
commit
51f41cb5eb
1 changed files with 3 additions and 3 deletions
|
@ -66,7 +66,7 @@ namespace Ryujinx.HLE.HOS.Services.Account.Acc
|
||||||
|
|
||||||
MemoryHelper.FillWithZeros(context.Memory, outputPosition, (int)outputSize);
|
MemoryHelper.FillWithZeros(context.Memory, outputPosition, (int)outputSize);
|
||||||
|
|
||||||
ulong offset = 0UL;
|
ulong offset = 0;
|
||||||
|
|
||||||
foreach (UserProfile userProfile in profiles)
|
foreach (UserProfile userProfile in profiles)
|
||||||
{
|
{
|
||||||
|
@ -76,7 +76,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 + 8, userProfile.UserId.High);
|
||||||
|
|
||||||
offset += 0x10;
|
offset += 0x10;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue