diff --git a/Ryujinx.HLE/HOS/Services/Friend/IFriendService.cs b/Ryujinx.HLE/HOS/Services/Friend/IFriendService.cs index 39c7c11267..efd264be2d 100644 --- a/Ryujinx.HLE/HOS/Services/Friend/IFriendService.cs +++ b/Ryujinx.HLE/HOS/Services/Friend/IFriendService.cs @@ -76,7 +76,7 @@ namespace Ryujinx.HLE.HOS.Services.Friend return 0; } - // UpdateUserPresence(nn::account::Uid, ulong Unknown0) -> buffer + // UpdateUserPresence(nn::account::Uid, ulong Unknown0) -> buffer 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; } } -} \ No newline at end of file +}