diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-12-12 08:10:12 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-12 22:10:12 +1100 |
| commit | ef157bbe263e60b2e9c3259e5aee20a297c5f5bc (patch) | |
| tree | 457764f45bc1ad2e53504730e4e831a449e1ef9e /Ryujinx.HLE | |
| parent | 74aa7b20be5ef924f3e8cbde699fcf4f8431f750 (diff) | |
Remove inexistent buffer from GetNintendoAccountUserResourceCacheForApplication (#1809)
Diffstat (limited to 'Ryujinx.HLE')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Account/Acc/IManagerForApplication.cs | 6 |
1 files 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 734366dc..746f8f46 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<nn::account::nas::NasUserBaseForApplication, 0x1a>, buffer<bytes, 6>) + // GetNintendoAccountUserResourceCacheForApplication() -> (nn::account::NintendoAccountId, nn::account::nas::NasUserBaseForApplication, buffer<bytes, 6>) 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; } |
