Ryujinx/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs
2023-01-01 17:49:51 +01:00

12 lines
No EOL
216 B
C#

namespace Ryujinx.HLE.HOS.Services.Spl
{
enum ResultCode
{
ModuleId = 26,
ErrorCodeShift = 9,
Success = 0,
InvalidArguments = (101 << ErrorCodeShift) | ModuleId
}
}