mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-17 23:26:40 +00:00
Stub ActivateKeyboard on Hid
This commit is contained in:
parent
c8b6274456
commit
2d33756878
1 changed files with 8 additions and 0 deletions
|
@ -18,6 +18,7 @@ namespace Ryujinx.Core.OsHle.Services.Hid
|
||||||
{ 1, ActivateDebugPad },
|
{ 1, ActivateDebugPad },
|
||||||
{ 11, ActivateTouchScreen },
|
{ 11, ActivateTouchScreen },
|
||||||
{ 21, ActivateMouse },
|
{ 21, ActivateMouse },
|
||||||
|
{ 31, ActivateKeyboard },
|
||||||
{ 66, StartSixAxisSensor },
|
{ 66, StartSixAxisSensor },
|
||||||
{ 100, SetSupportedNpadStyleSet },
|
{ 100, SetSupportedNpadStyleSet },
|
||||||
{ 101, GetSupportedNpadStyleSet },
|
{ 101, GetSupportedNpadStyleSet },
|
||||||
|
@ -61,6 +62,13 @@ namespace Ryujinx.Core.OsHle.Services.Hid
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long ActivateKeyboard(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
long AppletResourceUserId = Context.RequestData.ReadInt64();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
public long StartSixAxisSensor(ServiceCtx Context)
|
public long StartSixAxisSensor(ServiceCtx Context)
|
||||||
{
|
{
|
||||||
int Handle = Context.RequestData.ReadInt32();
|
int Handle = Context.RequestData.ReadInt32();
|
||||||
|
|
Loading…
Reference in a new issue