mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-12-16 12:09:51 +00:00
ILibraryAppletAccessor:90 tweak (ryubing/ryujinx!199)
See merge request ryubing/ryujinx!199
This commit is contained in:
parent
3394736b07
commit
ff9a75f895
@ -119,11 +119,18 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Lib
|
|||||||
}
|
}
|
||||||
|
|
||||||
[CommandCmif(90)]
|
[CommandCmif(90)]
|
||||||
// ILibraryAppletAccessor:90
|
// Unknown90(ulong[4])
|
||||||
public ResultCode Unknown90(ServiceCtx context)
|
public ResultCode Unknown90(ServiceCtx context)
|
||||||
{
|
{
|
||||||
// NOTE: This call is performed on SDK 20+ when applet is called.
|
// NOTE: This call is performed on SDK 20+ when applet is called.
|
||||||
// Since we don't support applets for now, it's fine to stub it.
|
// Since we don't support most applets for now, it's fine to stub it.
|
||||||
|
// Throw if values are not 0 to learn more about what this function does.
|
||||||
|
|
||||||
|
if (context.RequestData.ReadUInt64() != 0 || context.RequestData.ReadUInt64() != 0 ||
|
||||||
|
context.RequestData.ReadUInt64() != 0 || context.RequestData.ReadUInt64() != 0)
|
||||||
|
{
|
||||||
|
throw new ArgumentException("Invalid data: values are not 0");
|
||||||
|
}
|
||||||
|
|
||||||
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
||||||
return ResultCode.Success;
|
return ResultCode.Success;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user