diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-03-13 21:26:14 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-03-13 21:26:14 -0300 |
| commit | 19564e570baab98754cb808c704fbd9c924abc60 (patch) | |
| tree | 96ea5cb4bad2eb08255f7dc8f6d90146e90a1612 | |
| parent | 2ed24af756f60391dade07ac371a2cf630628eb3 (diff) | |
Stub StartSixAxisSensor
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/Hid/ServiceHid.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx.Core/OsHle/Services/Hid/ServiceHid.cs b/Ryujinx.Core/OsHle/Services/Hid/ServiceHid.cs index d7b53fc9..6735c6ad 100644 --- a/Ryujinx.Core/OsHle/Services/Hid/ServiceHid.cs +++ b/Ryujinx.Core/OsHle/Services/Hid/ServiceHid.cs @@ -18,6 +18,7 @@ namespace Ryujinx.Core.OsHle.IpcServices.Hid { { 0, CreateAppletResource }, { 11, ActivateTouchScreen }, + { 66, StartSixAxisSensor }, { 100, SetSupportedNpadStyleSet }, { 101, GetSupportedNpadStyleSet }, { 102, SetSupportedNpadIdType }, @@ -47,6 +48,15 @@ namespace Ryujinx.Core.OsHle.IpcServices.Hid return 0; } + public long StartSixAxisSensor(ServiceCtx Context) + { + int Handle = Context.RequestData.ReadInt32(); + + long AppletResourceUserId = Context.RequestData.ReadInt64(); + + return 0; + } + public long GetSupportedNpadStyleSet(ServiceCtx Context) { Context.ResponseData.Write(0); |
