stub pl:requestload

This commit is contained in:
emmaus 2018-03-13 16:44:06 +00:00
parent 6f4282daf8
commit e1f743427b

View file

@ -13,6 +13,7 @@ namespace Ryujinx.Core.OsHle.IpcServices.Pl
{ {
m_Commands = new Dictionary<int, ServiceProcessRequest>() m_Commands = new Dictionary<int, ServiceProcessRequest>()
{ {
{ 0, RequestLoad },
{ 1, GetLoadState }, { 1, GetLoadState },
{ 2, GetFontSize }, { 2, GetFontSize },
{ 3, GetSharedMemoryAddressOffset }, { 3, GetSharedMemoryAddressOffset },
@ -20,6 +21,11 @@ namespace Ryujinx.Core.OsHle.IpcServices.Pl
}; };
} }
public long RequestLoad(ServiceCtx Context)
{
return 0;
}
public long GetLoadState(ServiceCtx Context) public long GetLoadState(ServiceCtx Context)
{ {
Context.ResponseData.Write(1); //Loaded Context.ResponseData.Write(1); //Loaded