dinput: Ignore EV_MSC events instead of printing fixme.

This commit is contained in:
Vitaliy Margolen 2011-02-01 21:02:14 -07:00 committed by Alexandre Julliard
parent 4979d287b2
commit 670d54a637

View file

@ -839,6 +839,11 @@ static void joy_polldev(LPDIRECTINPUTDEVICE8A iface)
case EV_SYN:
/* 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);