From 44246cdae34bda568ad9e23efbd3ee0d012fdfd8 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sun, 9 Jul 2017 23:00:25 +0200 Subject: [PATCH] Fixed compiler warning about redundant declaration. SDL_RecordGesture() is already in the gesture header with additional specifiers. --- src/events/SDL_gesture_c.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/events/SDL_gesture_c.h b/src/events/SDL_gesture_c.h index 31adc1be2d5bc..bce812b9ee342 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: */