| 123456789101112131415161718 |
- 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;
- }
- }
- }
|