implement single tap touchscreen (#34)

This commit is contained in:
emmauss 2018-02-22 15:28:27 +02:00 committed by gdkchan
parent 224211367f
commit 1b33e2f1d4
4 changed files with 113 additions and 43 deletions

View file

@ -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;
}
}
}