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

Commit

Permalink
Fixed Warning related to SDL_GestureAddTouch
Browse files Browse the repository at this point in the history
  • Loading branch information
jimtla committed Jul 18, 2010
1 parent 55be1eb commit 0bf340b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/events/SDL_gesture_c.h
Expand Up @@ -28,6 +28,8 @@ extern void SDL_GestureProcessEvent(SDL_Event* event);

extern int SDL_RecordGesture(int touchId);

extern int SDL_GestureAddTouch(SDL_Touch* touch);

#endif /* _SDL_gesture_c_h */

/* vi: set ts=4 sw=4 expandtab: */
3 changes: 1 addition & 2 deletions src/events/SDL_touch.c
Expand Up @@ -38,8 +38,7 @@ static SDL_Touch **SDL_touchPads = NULL;
int
SDL_TouchInit(void)
{

return (0);
return (0);
}

SDL_Touch *
Expand Down

0 comments on commit 0bf340b

Please sign in to comment.