GreemDev-Ryujinx/src/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs
2023-04-27 23:51:14 +02: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
}
}