|
@@ -86,6 +86,19 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Lib
|
|
|
return (ResultCode)_applet.GetResult();
|
|
return (ResultCode)_applet.GetResult();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ [Command(60)]
|
|
|
|
|
+ // PresetLibraryAppletGpuTimeSliceZero()
|
|
|
|
|
+ public ResultCode PresetLibraryAppletGpuTimeSliceZero(ServiceCtx context)
|
|
|
|
|
+ {
|
|
|
|
|
+ // NOTE: This call reset two internal fields to 0 and one internal field to "true".
|
|
|
|
|
+ // It seems to be used only with software keyboard inline.
|
|
|
|
|
+ // Since we doesn't support applets for now, it's fine to stub it.
|
|
|
|
|
+
|
|
|
|
|
+ Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
|
|
|
|
+
|
|
|
|
|
+ return ResultCode.Success;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
[Command(100)]
|
|
[Command(100)]
|
|
|
// PushInData(object<nn::am::service::IStorage>)
|
|
// PushInData(object<nn::am::service::IStorage>)
|
|
|
public ResultCode PushInData(ServiceCtx context)
|
|
public ResultCode PushInData(ServiceCtx context)
|
|
@@ -152,7 +165,6 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Lib
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-
|
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_normalOutDataEventHandle);
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_normalOutDataEventHandle);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
return ResultCode.Success;
|