Commit 20284673 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

dinput: Fix the compile for missing EV_SYN define.

parent ee0e1392
......@@ -742,9 +742,11 @@ static void joy_polldev(JoystickImpl *This) {
This->ff_state = ie.value;
break;
#endif
#ifdef EV_SYN
case EV_SYN:
/* there is nothing to do */
break;
#endif
default:
FIXME("joystick cannot handle type %d event (code %d)\n",ie.type,ie.code);
break;
......
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