mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:48:36 +00:00
18 lines
413 B
C#
18 lines
413 B
C#
using Ryujinx.Core.OsHle.Objects.Vi;
|
|
|
|
using static Ryujinx.Core.OsHle.Objects.ObjHelper;
|
|
|
|
namespace Ryujinx.Core.OsHle.Services
|
|
{
|
|
static partial class Service
|
|
{
|
|
public static long ViGetDisplayService(ServiceCtx Context)
|
|
{
|
|
int Unknown = Context.RequestData.ReadInt32();
|
|
|
|
MakeObject(Context, new IApplicationDisplayService());
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |