Commit 189c13da authored by John Klehm's avatar John Klehm Committed by Alexandre Julliard

winex11: Support detection of tablet devices from XExtensionKeyboard type.

parent f39f7525
......@@ -536,7 +536,10 @@ void X11DRV_LoadTabletInfo(HWND hwnddefault)
#ifdef IsXExtensionPointer
case IsXExtensionPointer:
#endif
TRACE("Is XExtension%s\n", (devices[loop].use == IsXExtensionDevice)? "Device":"Pointer");
#ifdef IsXExtensionKeyboard
case IsXExtensionKeyboard:
#endif
TRACE("Is XExtension: Device, Keyboard, or Pointer\n");
cursor_target++;
target = &devices[loop];
cursor = &gSysCursor[cursor_target];
......
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