mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-17 03:20:17 +00:00
14 lines
No EOL
231 B
C#
14 lines
No EOL
231 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Spl
|
|
{
|
|
enum ResultCode
|
|
{
|
|
ModuleId = 26,
|
|
ErrorCodeShift = 9,
|
|
|
|
Success = 0,
|
|
|
|
InvalidArguments = (101 << ErrorCodeShift) | ModuleId
|
|
}
|
|
} |