mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-07-29 01:51:55 +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;
|
|
}
|
|
}
|
|
} |