acc/hid: Implement ListQualifiedUsers and SetTouchScreenConfiguration (#1555)

* acc/hid: Implement ListQualifiedUsers and SetTouchScreenConfiguration

* Fix symbols
This commit is contained in:
Ac_K 2020-09-20 06:32:58 +02:00 committed by GitHub
parent d0e36b7b19
commit 0158dc4db3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -1501,5 +1501,17 @@ namespace Ryujinx.HLE.HOS.Services.Hid
return ResultCode.Success;
}
[Command(1002)] // 9.0.0+
// SetTouchScreenConfiguration(nn::hid::TouchScreenConfigurationForNx, nn::applet::AppletResourceUserId)
public ResultCode SetTouchScreenConfiguration(ServiceCtx context)
{
long touchScreenConfigurationForNx = context.RequestData.ReadInt64();
long appletResourceUserId = context.RequestData.ReadInt64();
Logger.Stub?.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, touchScreenConfigurationForNx });
return ResultCode.Success;
}
}
}