From 1b33e2f1d4b190017b4aed26cfb2f6878f0b2e4c Mon Sep 17 00:00:00 2001 From: emmauss Date: Thu, 22 Feb 2018 15:28:27 +0200 Subject: implement single tap touchscreen (#34) --- Ryujinx.Core/Switch.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Ryujinx.Core/Switch.cs') diff --git a/Ryujinx.Core/Switch.cs b/Ryujinx.Core/Switch.cs index 2b6a9045..8fd7979e 100644 --- a/Ryujinx.Core/Switch.cs +++ b/Ryujinx.Core/Switch.cs @@ -51,6 +51,11 @@ namespace Ryujinx.Core { Hid.SendControllerButtons(ControllerId, Layout, Buttons, LeftJoystick, RightJoystick); } + + public void SendTouchScreenEntry(HidTouchScreenEntryTouch TouchPoint) + { + Hid.SendTouchPoint(TouchPoint); + } internal virtual void OnFinish(EventArgs e) { -- cgit v1.2.3