Skip to content

Commit

Permalink
Revert "Fix IsGestureDetected parameter inconsistency in raylib.h wit…
Browse files Browse the repository at this point in the history
…h rgextures.h (#3464)"

This reverts commit 804f1a8.
  • Loading branch information
raysan5 committed Oct 26, 2023
1 parent 804f1a8 commit eddeafd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/raylib.h
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,7 @@ RLAPI int GetTouchPointCount(void); // Get number of t
// Gestures and Touch Handling Functions (Module: rgestures)
//------------------------------------------------------------------------------------
RLAPI void SetGesturesEnabled(unsigned int flags); // Enable a set of gestures using flags
RLAPI bool IsGestureDetected(int gesture); // Check if a gesture have been detected
RLAPI bool IsGestureDetected(unsigned int gesture); // Check if a gesture have been detected
RLAPI int GetGestureDetected(void); // Get latest detected gesture
RLAPI float GetGestureHoldDuration(void); // Get gesture hold time in milliseconds
RLAPI Vector2 GetGestureDragVector(void); // Get gesture drag vector
Expand Down

0 comments on commit eddeafd

Please sign in to comment.