Fixed typo in function name.
--- a/src/video/x11/SDL_x11events.c Sat Sep 15 11:03:14 2012 -0400
+++ b/src/video/x11/SDL_x11events.c Mon Sep 17 19:20:47 2012 -0400
@@ -574,7 +574,7 @@
X11_DispatchEvent(_this);
}
/*Dont process evtouch events if XInput2 multitouch is supported*/
- if(X11_Xinput2IsMutitouchSupported()) {
+ if(X11_Xinput2IsMultitouchSupported()) {
return;
}
--- a/src/video/x11/SDL_x11touch.c Sat Sep 15 11:03:14 2012 -0400
+++ b/src/video/x11/SDL_x11touch.c Mon Sep 17 19:20:47 2012 -0400
@@ -39,7 +39,7 @@
/*Initilized Xinput2 multitouch
* and return in order to not initialize
* evtouch also*/
- if(X11_Xinput2IsMutitouchSupported()) {
+ if(X11_Xinput2IsMultitouchSupported()) {
X11_InitXinput2Multitouch(_this);
return;
}
--- a/src/video/x11/SDL_x11xinput2.c Sat Sep 15 11:03:14 2012 -0400
+++ b/src/video/x11/SDL_x11xinput2.c Mon Sep 17 19:20:47 2012 -0400
@@ -248,7 +248,7 @@
}
int
-X11_Xinput2IsMutitouchSupported() {
+X11_Xinput2IsMultitouchSupported() {
#if SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH
return xinput2_initialized && xinput2_multitouch_supported;
#else
--- a/src/video/x11/SDL_x11xinput2.h Sat Sep 15 11:03:14 2012 -0400
+++ b/src/video/x11/SDL_x11xinput2.h Mon Sep 17 19:20:47 2012 -0400
@@ -34,7 +34,7 @@
extern void X11_InitXinput2Multitouch(_THIS);
extern int X11_HandleXinput2Event(SDL_VideoData *videodata,XGenericEventCookie *cookie);
extern int X11_Xinput2IsInitialized(void);
-extern int X11_Xinput2IsMutitouchSupported(void);
+extern int X11_Xinput2IsMultitouchSupported(void);
extern void X11_Xinput2SelectTouch(_THIS, SDL_Window *window);
#endif /* _SDL_x11xinput2_h */