Update IFriendService.cs

This commit is contained in:
Ac_K 2018-09-23 00:44:47 +02:00 committed by GitHub
parent 07ba617b75
commit 8dfe9b03f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,7 +76,7 @@ namespace Ryujinx.HLE.HOS.Services.Friend
return 0;
}
// UpdateUserPresence(nn::account::Uid, ulong Unknown0) -> buffer<nn::friends::detail::UserPresenceImpl, type: 0x19, size: 0xe0>
// UpdateUserPresence(nn::account::Uid, ulong Unknown0) -> buffer<Unknown1, type: 0x19, size: 0xe0>
public long UpdateUserPresence(ServiceCtx Context)
{
UserId Uuid = new UserId(
@ -88,7 +88,7 @@ namespace Ryujinx.HLE.HOS.Services.Friend
long Position = Context.Request.PtrBuff[0].Position;
long Size = Context.Request.PtrBuff[0].Size;
//Todo: Write the nn::friends::detail::UserPresenceImpl inside the buffer.
//Todo: Write the buffer content.
Context.Device.Log.PrintStub(LogClass.ServiceFriend, $"Stubbed. Uuid: {Uuid.UserIdHex} - " +
$"Unknown0: {Unknown0}");
@ -96,4 +96,4 @@ namespace Ryujinx.HLE.HOS.Services.Friend
return 0;
}
}
}
}