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