Module: wine Branch: master Commit: 670d54a6379bf5542fc8d00ef386482247e09649 URL: http://source.winehq.org/git/wine.git/?a=commit;h=670d54a6379bf5542fc8d00ef3...
Author: Vitaliy Margolen wine-patches@kievinfo.com Date: Tue Feb 1 21:02:14 2011 -0700
dinput: Ignore EV_MSC events instead of printing fixme.
---
dlls/dinput/joystick_linuxinput.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/dlls/dinput/joystick_linuxinput.c b/dlls/dinput/joystick_linuxinput.c index 7e70912..9b0c52c 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;