This commit is contained in:
LDj3SNuD 2019-10-28 01:47:12 +01:00 committed by GitHub
commit 51f41cb5eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
} }