aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Apm/ResultCode.cs
blob: c4499b0147f16133e62a902b73809ab156207160 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.HLE.HOS.Services.Apm
{
    enum ResultCode
    {
        ModuleId       = 148,
        ErrorCodeShift = 9,

        Success = 0,

        InvalidParameters = (1 << ErrorCodeShift) | ModuleId
    }
}