mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:58:32 +00:00
12 lines
222 B
C#
12 lines
222 B
C#
namespace Ryujinx.HLE.HOS.Services.Hid
|
|
{
|
|
enum ResultCode
|
|
{
|
|
ModuleId = 202,
|
|
ErrorCodeShift = 9,
|
|
|
|
Success = 0,
|
|
|
|
InvalidNpadIdType = (710 << ErrorCodeShift) | ModuleId
|
|
}
|
|
} |