Explorar o código

Stub ActivateKeyboard on Hid

gdkchan %!s(int64=8) %!d(string=hai) anos
pai
achega
2d33756878
Modificáronse 1 ficheiros con 8 adicións e 0 borrados
  1. 8 0
      Ryujinx.Core/OsHle/Services/Hid/ServiceHid.cs

+ 8 - 0
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();