Commit ee2db299 authored by Mikolaj Zalewski's avatar Mikolaj Zalewski Committed by Alexandre Julliard

winex11.drv: wintab: Copy also the button #0 state.

parent 71d77d98
...@@ -571,11 +571,11 @@ static void set_button_state(XID deviceid) ...@@ -571,11 +571,11 @@ static void set_button_state(XID deviceid)
{ {
int loop2; int loop2;
XButtonState *button_state = (XButtonState*)class; XButtonState *button_state = (XButtonState*)class;
for (loop2 = 1; loop2 <= button_state->num_buttons; loop2++) for (loop2 = 0; loop2 < button_state->num_buttons; loop2++)
{ {
if (button_state->buttons[loop2 / 8] & (1 << (loop2 % 8))) if (button_state->buttons[loop2 / 8] & (1 << (loop2 % 8)))
{ {
rc |= (1<<(loop2-1)); rc |= (1<<loop2);
} }
} }
} }
......
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