Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed typo in function name.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 17, 2012
1 parent 188c9e2 commit 5495d42
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11events.c
Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11touch.c
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11xinput2.c
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11xinput2.h
Expand Up @@ -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 */
Expand Down

0 comments on commit 5495d42

Please sign in to comment.