mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 00:06:39 +00:00
Remove inexistent buffer from GetNintendoAccountUserResourceCacheForApplication (#1809)
This commit is contained in:
parent
74aa7b20be
commit
ef157bbe26
1 changed files with 2 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue