Commit 01824246 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Vitaly Lipatov

winex11.drv: Support multiplex categories WTI_DSCTXS and WTI_DDCTXS

parent 5cac42d4
......@@ -1156,6 +1156,17 @@ NTSTATUS x11drv_tablet_info( void *arg )
if (!xinput_handle) return 0;
if(wCategory >= WTI_DSCTXS)
{
nIndex = wCategory - WTI_DSCTXS;
wCategory = WTI_DSCTXS;
}
else if(wCategory >= WTI_DDCTXS)
{
nIndex = wCategory - WTI_DDCTXS;
wCategory = WTI_DDCTXS;
}
switch(wCategory)
{
case 0:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment