aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/Hid
diff options
context:
space:
mode:
authoremmauss <emmausssss@gmail.com>2018-02-22 15:28:27 +0200
committergdkchan <gab.dark.100@gmail.com>2018-02-22 10:28:27 -0300
commit1b33e2f1d4b190017b4aed26cfb2f6878f0b2e4c (patch)
treed2dab0436d9c305a32765a8b251943cf82df77b8 /Ryujinx.Core/Hid
parent224211367f52cf514f0608d69056e84a3ef37ff5 (diff)
implement single tap touchscreen (#34)
Diffstat (limited to 'Ryujinx.Core/Hid')
-rw-r--r--Ryujinx.Core/Hid/HidTouchScreen.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Ryujinx.Core/Hid/HidTouchScreen.cs b/Ryujinx.Core/Hid/HidTouchScreen.cs
index b755cb95..755ebadc 100644
--- a/Ryujinx.Core/Hid/HidTouchScreen.cs
+++ b/Ryujinx.Core/Hid/HidTouchScreen.cs
@@ -38,7 +38,7 @@ namespace Ryujinx.Core
{
public HidTouchScreenEntryHeader Header;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
- public HidTouchScreenEntryTouch[] Touches;
+ public HidTouchScreenEntryTouch[] Touches;
public ulong Unknown;
}
@@ -51,4 +51,5 @@ namespace Ryujinx.Core
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 0x3C0)]
public byte[] Padding;
}
-}
+
+} \ No newline at end of file