aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/OsHle/Services/ServiceVi.cs
blob: d5c86bfc26ed8cbee95b9372ab41e2db14c59ced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Ryujinx.OsHle.Objects;

using static Ryujinx.OsHle.Objects.ObjHelper;

namespace Ryujinx.OsHle.Services
{
    static partial class Service
    {
        public static long ViGetDisplayService(ServiceCtx Context)
        {
            int Unknown = Context.RequestData.ReadInt32();

            MakeObject(Context, new ViIApplicationDisplayService());

            return 0;
        }
    }
}