ServiceVi.cs 413 B

123456789101112131415161718
  1. using Ryujinx.Core.OsHle.Objects.Vi;
  2. using static Ryujinx.Core.OsHle.Objects.ObjHelper;
  3. namespace Ryujinx.Core.OsHle.Services
  4. {
  5. static partial class Service
  6. {
  7. public static long ViGetDisplayService(ServiceCtx Context)
  8. {
  9. int Unknown = Context.RequestData.ReadInt32();
  10. MakeObject(Context, new IApplicationDisplayService());
  11. return 0;
  12. }
  13. }
  14. }