Commit 44246cdae34bda568ad9e23efbd3ee0d012fdfd8

Philipp Wiesemann 2017-07-09T23:00:25

Fixed compiler warning about redundant declaration. SDL_RecordGesture() is already in the gesture header with additional specifiers.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/events/SDL_gesture_c.h b/src/events/SDL_gesture_c.h
index 31adc1b..bce812b 100644
--- a/src/events/SDL_gesture_c.h
+++ b/src/events/SDL_gesture_c.h
@@ -27,8 +27,6 @@ extern int SDL_GestureAddTouch(SDL_TouchID touchId);
 
 extern void SDL_GestureProcessEvent(SDL_Event* event);
 
-extern int SDL_RecordGesture(SDL_TouchID touchId);
-
 #endif /* SDL_gesture_c_h_ */
 
 /* vi: set ts=4 sw=4 expandtab: */