From 670d54a6379bf5542fc8d00ef386482247e09649 Mon Sep 17 00:00:00 2001 From: Vitaliy Margolen Date: Tue, 1 Feb 2011 21:02:14 -0700 Subject: [PATCH] dinput: Ignore EV_MSC events instead of printing fixme. --- dlls/dinput/joystick_linuxinput.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dlls/dinput/joystick_linuxinput.c b/dlls/dinput/joystick_linuxinput.c index 7e70912801c..9b0c52c01de 100644 --- a/dlls/dinput/joystick_linuxinput.c +++ b/dlls/dinput/joystick_linuxinput.c @@ -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; -- 2.11.4.GIT