a113ed0811
* Implement/Stub mnpp:app service and some hid calls This PR Implement/Stub the `mnpp:app` service (closes #3107) accordingly to RE, which seems to do some telemetry for China region only, so everything is stubbed. This PR fixes some inconsistencies in the hid service too and stub EnableSixAxisSensorUnalteredPassthrough, IsSixAxisSensorUnalteredPassthroughEnabled, LoadSixAxisSensorCalibrationParameter, GetSixAxisSensorIcInformation calls (closes #3123 and closes #3124). * Addresses Thog review
13 lines
No EOL
283 B
C#
13 lines
No EOL
283 B
C#
namespace Ryujinx.HLE.HOS.Services.Mnpp
|
|
{
|
|
enum ResultCode
|
|
{
|
|
ModuleId = 239,
|
|
ErrorCodeShift = 9,
|
|
|
|
Success = 0,
|
|
|
|
InvalidArgument = (100 << ErrorCodeShift) | ModuleId,
|
|
InvalidBufferSize = (101 << ErrorCodeShift) | ModuleId
|
|
}
|
|
} |