From 5495d427ca5b3771da5b927c6b55ea532164514b Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 17 Sep 2012 19:20:47 -0400 Subject: [PATCH] Fixed typo in function name. --- src/video/x11/SDL_x11events.c | 2 +- src/video/x11/SDL_x11touch.c | 2 +- src/video/x11/SDL_x11xinput2.c | 2 +- src/video/x11/SDL_x11xinput2.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/video/x11/SDL_x11events.c b/src/video/x11/SDL_x11events.c index a85622d2a..a447f330d 100755 --- a/src/video/x11/SDL_x11events.c +++ b/src/video/x11/SDL_x11events.c @@ -574,7 +574,7 @@ X11_PumpEvents(_THIS) X11_DispatchEvent(_this); } /*Dont process evtouch events if XInput2 multitouch is supported*/ - if(X11_Xinput2IsMutitouchSupported()) { + if(X11_Xinput2IsMultitouchSupported()) { return; } diff --git a/src/video/x11/SDL_x11touch.c b/src/video/x11/SDL_x11touch.c index 86a8f3cfe..17927e392 100755 --- a/src/video/x11/SDL_x11touch.c +++ b/src/video/x11/SDL_x11touch.c @@ -39,7 +39,7 @@ X11_InitTouch(_THIS) /*Initilized Xinput2 multitouch * and return in order to not initialize * evtouch also*/ - if(X11_Xinput2IsMutitouchSupported()) { + if(X11_Xinput2IsMultitouchSupported()) { X11_InitXinput2Multitouch(_this); return; } diff --git a/src/video/x11/SDL_x11xinput2.c b/src/video/x11/SDL_x11xinput2.c index cfeb2f9ae..c654c7fa1 100644 --- a/src/video/x11/SDL_x11xinput2.c +++ b/src/video/x11/SDL_x11xinput2.c @@ -248,7 +248,7 @@ X11_Xinput2IsInitialized() { } int -X11_Xinput2IsMutitouchSupported() { +X11_Xinput2IsMultitouchSupported() { #if SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH return xinput2_initialized && xinput2_multitouch_supported; #else diff --git a/src/video/x11/SDL_x11xinput2.h b/src/video/x11/SDL_x11xinput2.h index a95ef2940..207c100c2 100644 --- a/src/video/x11/SDL_x11xinput2.h +++ b/src/video/x11/SDL_x11xinput2.h @@ -34,7 +34,7 @@ extern void X11_InitXinput2(_THIS); 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 */