mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 03:16:23 +02:00
18 lines
No EOL
413 B
C#
18 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |