handle vi:u and vi:s getdisplayservice

This commit is contained in:
emmaus 2018-03-21 20:20:34 +00:00
parent e2a80ba29e
commit ba19c2c9e7

View file

@ -13,13 +13,15 @@ namespace Ryujinx.Core.OsHle.Services.Vi
{
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 0, GetDisplayService },
{ 1, GetDisplayService },
{ 2, GetDisplayService }
};
}
public long GetDisplayService(ServiceCtx Context)
{
int Unknown = Context.RequestData.ReadInt32();
int ServiceType = Context.RequestData.ReadInt32();
MakeObject(Context, new IApplicationDisplayService());