mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
12 lines
No EOL
216 B
C#
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
|
|
}
|
|
} |