Commit 95bbf5f443822de3c7ccaae45a25dc57948ebc26

Philipp Wiesemann 2013-11-02T11:51:23

Removed unreachable return statement in gesture source.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/src/events/SDL_gesture.c b/src/events/SDL_gesture.c
index 20ce57b..d59fde2 100644
--- a/src/events/SDL_gesture.c
+++ b/src/events/SDL_gesture.c
@@ -198,10 +198,8 @@ static int SDL_AddDollarGesture(SDL_GestureTouch* inTouch, SDL_FloatPoint* path)
         }
         /* Use the index of the last one added. */
         return index;
-    } else {
-        return SDL_AddDollarGesture_one(inTouch, path);
     }
-    return -1;
+    return SDL_AddDollarGesture_one(inTouch, path);
 }
 
 int SDL_LoadDollarTemplates(SDL_TouchID touchId, SDL_RWops *src)