dinput: Ignore EV_MSC events instead of printing fixme.
This commit is contained in:
parent
4979d287b2
commit
670d54a637
|
@ -839,6 +839,11 @@ static void joy_polldev(LPDIRECTINPUTDEVICE8A iface)
|
||||||
case EV_SYN:
|
case EV_SYN:
|
||||||
/* there is nothing to do */
|
/* there is nothing to do */
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef EV_MSC
|
||||||
|
case EV_MSC:
|
||||||
|
/* Ignore */
|
||||||
|
break;
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
FIXME("joystick cannot handle type %d event (code %d)\n",ie.type,ie.code);
|
FIXME("joystick cannot handle type %d event (code %d)\n",ie.type,ie.code);
|
||||||
|
|
Loading…
Reference in New Issue