Vitaliy Margolen : dinput: Ignore EV_MSC events instead of printing fixme.

Alexandre Julliard julliard at winehq.org
Wed Feb 2 12:30:16 CST 2011


Module: wine
Branch: master
Commit: 670d54a6379bf5542fc8d00ef386482247e09649
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=670d54a6379bf5542fc8d00ef386482247e09649

Author: Vitaliy Margolen <wine-patches at 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;




More information about the wine-cvs mailing list