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

        Success = 0,

        InvalidArguments = (101 << ErrorCodeShift) | ModuleId,
    }
}