Commit 670d54a6 authored by Vitaliy Margolen's avatar Vitaliy Margolen Committed by Alexandre Julliard

dinput: Ignore EV_MSC events instead of printing fixme.

parent 4979d287
......@@ -840,6 +840,11 @@ static void joy_polldev(LPDIRECTINPUTDEVICE8A iface)
/* there is nothing to do */
break;
#endif
#ifdef EV_MSC
case EV_MSC:
/* Ignore */
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