From ef157bbe263e60b2e9c3259e5aee20a297c5f5bc Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sat, 12 Dec 2020 08:10:12 -0300 Subject: [PATCH] Remove inexistent buffer from GetNintendoAccountUserResourceCacheForApplication (#1809) --- .../HOS/Services/Account/Acc/IManagerForApplication.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/IManagerForApplication.cs b/Ryujinx.HLE/HOS/Services/Account/Acc/IManagerForApplication.cs index 734366dcc..746f8f469 100644 --- a/Ryujinx.HLE/HOS/Services/Account/Acc/IManagerForApplication.cs +++ b/Ryujinx.HLE/HOS/Services/Account/Acc/IManagerForApplication.cs @@ -115,16 +115,14 @@ namespace Ryujinx.HLE.HOS.Services.Account.Acc } [Command(130)] - // GetNintendoAccountUserResourceCacheForApplication() -> (nn::account::NintendoAccountId, buffer, buffer) + // GetNintendoAccountUserResourceCacheForApplication() -> (nn::account::NintendoAccountId, nn::account::nas::NasUserBaseForApplication, buffer) public ResultCode GetNintendoAccountUserResourceCacheForApplication(ServiceCtx context) { Logger.Stub?.PrintStub(LogClass.ServiceAcc, new { NetworkServiceAccountId }); context.ResponseData.Write(NetworkServiceAccountId); - context.Response.PtrBuff[0] = context.Response.PtrBuff[0].WithSize(0L); - - // TODO: determine and fill the two output IPC buffers. + // TODO: determine and fill the output IPC buffer. return ResultCode.Success; }