Fixed typo in function name.
1.1 --- a/src/video/x11/SDL_x11events.c Sat Sep 15 11:03:14 2012 -0400
1.2 +++ b/src/video/x11/SDL_x11events.c Mon Sep 17 19:20:47 2012 -0400
1.3 @@ -574,7 +574,7 @@
1.4 X11_DispatchEvent(_this);
1.5 }
1.6 /*Dont process evtouch events if XInput2 multitouch is supported*/
1.7 - if(X11_Xinput2IsMutitouchSupported()) {
1.8 + if(X11_Xinput2IsMultitouchSupported()) {
1.9 return;
1.10 }
1.11
2.1 --- a/src/video/x11/SDL_x11touch.c Sat Sep 15 11:03:14 2012 -0400
2.2 +++ b/src/video/x11/SDL_x11touch.c Mon Sep 17 19:20:47 2012 -0400
2.3 @@ -39,7 +39,7 @@
2.4 /*Initilized Xinput2 multitouch
2.5 * and return in order to not initialize
2.6 * evtouch also*/
2.7 - if(X11_Xinput2IsMutitouchSupported()) {
2.8 + if(X11_Xinput2IsMultitouchSupported()) {
2.9 X11_InitXinput2Multitouch(_this);
2.10 return;
2.11 }
3.1 --- a/src/video/x11/SDL_x11xinput2.c Sat Sep 15 11:03:14 2012 -0400
3.2 +++ b/src/video/x11/SDL_x11xinput2.c Mon Sep 17 19:20:47 2012 -0400
3.3 @@ -248,7 +248,7 @@
3.4 }
3.5
3.6 int
3.7 -X11_Xinput2IsMutitouchSupported() {
3.8 +X11_Xinput2IsMultitouchSupported() {
3.9 #if SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH
3.10 return xinput2_initialized && xinput2_multitouch_supported;
3.11 #else
4.1 --- a/src/video/x11/SDL_x11xinput2.h Sat Sep 15 11:03:14 2012 -0400
4.2 +++ b/src/video/x11/SDL_x11xinput2.h Mon Sep 17 19:20:47 2012 -0400
4.3 @@ -34,7 +34,7 @@
4.4 extern void X11_InitXinput2Multitouch(_THIS);
4.5 extern int X11_HandleXinput2Event(SDL_VideoData *videodata,XGenericEventCookie *cookie);
4.6 extern int X11_Xinput2IsInitialized(void);
4.7 -extern int X11_Xinput2IsMutitouchSupported(void);
4.8 +extern int X11_Xinput2IsMultitouchSupported(void);
4.9 extern void X11_Xinput2SelectTouch(_THIS, SDL_Window *window);
4.10
4.11 #endif /* _SDL_x11xinput2_h */