diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-04-04 19:44:02 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-04-04 19:44:02 -0300 |
| commit | 2d337568783e5aaf87be5bc82c14bccc87c24cb7 (patch) | |
| tree | ec2bb887203643e62d946b784f467cd47bbb3177 | |
| parent | c8b6274456deb71ec7b91fa2da5bc233a8a7e0fa (diff) | |
Stub ActivateKeyboard on Hid
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/Hid/ServiceHid.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Ryujinx.Core/OsHle/Services/Hid/ServiceHid.cs b/Ryujinx.Core/OsHle/Services/Hid/ServiceHid.cs index 1f60a278..9226cfdd 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.Services.Hid { 1, ActivateDebugPad }, { 11, ActivateTouchScreen }, { 21, ActivateMouse }, + { 31, ActivateKeyboard }, { 66, StartSixAxisSensor }, { 100, SetSupportedNpadStyleSet }, { 101, GetSupportedNpadStyleSet }, @@ -61,6 +62,13 @@ namespace Ryujinx.Core.OsHle.Services.Hid return 0; } + public long ActivateKeyboard(ServiceCtx Context) + { + long AppletResourceUserId = Context.RequestData.ReadInt64(); + + return 0; + } + public long StartSixAxisSensor(ServiceCtx Context) { int Handle = Context.RequestData.ReadInt32(); |
