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:
|
||||
/* 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);
|
||||
|
|
Loading…
Reference in New Issue