2018-02-20 20:09:23 +00:00
|
|
|
using Ryujinx.Core.OsHle.Objects.Vi;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-02-20 20:09:23 +00:00
|
|
|
using static Ryujinx.Core.OsHle.Objects.ObjHelper;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-02-20 20:09:23 +00:00
|
|
|
namespace Ryujinx.Core.OsHle.Services
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
|
|
|
static partial class Service
|
|
|
|
{
|
|
|
|
public static long ViGetDisplayService(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int Unknown = Context.RequestData.ReadInt32();
|
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
MakeObject(Context, new IApplicationDisplayService());
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|