diff options
| author | raysan5 <raysan5@gmail.com> | 2016-02-20 19:01:41 +0100 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-02-20 19:01:41 +0100 |
| commit | 83459159f4c8622cefe93a062138e7e2391b6761 (patch) | |
| tree | fed90294bbefa7c456a083b3ed09c461cf10d5cf /src/gestures.c | |
| parent | 954ced21a42eb489ad382b4c00406a28778fee41 (diff) | |
| download | raylib-83459159f4c8622cefe93a062138e7e2391b6761.tar.gz raylib-83459159f4c8622cefe93a062138e7e2391b6761.zip | |
Corrected compiler complaint
Diffstat (limited to 'src/gestures.c')
| -rw-r--r-- | src/gestures.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gestures.c b/src/gestures.c index 9028f43b..3638f23e 100644 --- a/src/gestures.c +++ b/src/gestures.c @@ -184,7 +184,7 @@ void ProcessGestureEvent(GestureEvent event) } else if (event.touchAction == TOUCH_MOVE) { - if ((currentGesture == GESTURE_DRAG)) eventTime = GetCurrentTime(); + if (currentGesture == GESTURE_DRAG) eventTime = GetCurrentTime(); if (!startMoving) { |
