dinput: Fix the compile for missing EV_SYN define.

This commit is contained in:
Mike McCormack 2006-02-09 17:44:38 +01:00 committed by Alexandre Julliard
parent ee0e13923f
commit 202846739a
1 changed files with 2 additions and 0 deletions

View File

@ -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;