summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2023-09-22 11:58:14 +0200
committerRay <[email protected]>2023-09-22 11:58:14 +0200
commitf27ea1f0c874b5bbae5f83de423256cc141aebc6 (patch)
tree8240c1965db654463e9ebb9ece017f72aacb59de /src/raylib.h
parent7eb49d1c7b92efdfd5ebe8680776967197888121 (diff)
downloadraylib-f27ea1f0c874b5bbae5f83de423256cc141aebc6.tar.gz
raylib-f27ea1f0c874b5bbae5f83de423256cc141aebc6.zip
REVIEWED: `IsGestureDetected()` parameter type
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 98e5c48a..635b3dfb 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -1163,7 +1163,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