aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Pctl/ResultCode.cs
blob: c3d157ed4499edba1ac86b2121e8f97d2200ee53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace Ryujinx.HLE.HOS.Services.Pctl
{
    enum ResultCode
    {
        ModuleId = 142,
        ErrorCodeShift = 9,

        Success = 0,

        FreeCommunicationDisabled = (101 << ErrorCodeShift) | ModuleId,
        StereoVisionDenied = (104 << ErrorCodeShift) | ModuleId,
        InvalidPid = (131 << ErrorCodeShift) | ModuleId,
        PermissionDenied = (133 << ErrorCodeShift) | ModuleId,
        StereoVisionRestrictionConfigurableDisabled = (181 << ErrorCodeShift) | ModuleId,
    }
}