forked from Mirror/Ryujinx
am: stub PresetLibraryAppletGpuTimeSliceZero (#1876)
This commit is contained in:
parent
b9200dd734
commit
71e2a00221
1 changed files with 13 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue