mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 07:51:54 +00:00
Fix ghost users bug. (#799)
* Fix ghost users bug. * Update IAccountServiceForApplication.cs
This commit is contained in:
parent
eff8379d2a
commit
59f48e3710
1 changed files with 3 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
using ARMeilleure.Memory;
|
||||
using Ryujinx.Common.Logging;
|
||||
using Ryujinx.HLE.HOS.Services.Arp;
|
||||
using Ryujinx.HLE.Utilities;
|
||||
|
@ -63,6 +64,8 @@ namespace Ryujinx.HLE.HOS.Services.Account.Acc
|
|||
long outputPosition = context.Request.RecvListBuff[0].Position;
|
||||
long outputSize = context.Request.RecvListBuff[0].Size;
|
||||
|
||||
MemoryHelper.FillWithZeros(context.Memory, outputPosition, (int)outputSize);
|
||||
|
||||
ulong offset = 0;
|
||||
|
||||
foreach (UserProfile userProfile in profiles)
|
||||
|
|
Loading…
Reference in a new issue