diff options
| author | emmauss <emmausssss@gmail.com> | 2018-02-22 15:28:27 +0200 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-02-22 10:28:27 -0300 |
| commit | 1b33e2f1d4b190017b4aed26cfb2f6878f0b2e4c (patch) | |
| tree | d2dab0436d9c305a32765a8b251943cf82df77b8 /Ryujinx.Core/Switch.cs | |
| parent | 224211367f52cf514f0608d69056e84a3ef37ff5 (diff) | |
implement single tap touchscreen (#34)
Diffstat (limited to 'Ryujinx.Core/Switch.cs')
| -rw-r--r-- | Ryujinx.Core/Switch.cs | 5 |
1 files changed, 5 insertions, 0 deletions
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) { |
