summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRay <[email protected]>2023-10-26 10:28:00 +0200
committerRay <[email protected]>2023-10-26 10:28:00 +0200
commiteddeafd2ed3be0b738a9ebcb5083448bd9640542 (patch)
tree29a22446e09ec9dc70d8c0f57a98a0670795cc68
parent804f1a83eba7aa5cbb701457e8d6cda372b1a10d (diff)
downloadraylib-eddeafd2ed3be0b738a9ebcb5083448bd9640542.tar.gz
raylib-eddeafd2ed3be0b738a9ebcb5083448bd9640542.zip
Revert "Fix IsGestureDetected parameter inconsistency in raylib.h with rgextures.h (#3464)"
This reverts commit 804f1a83eba7aa5cbb701457e8d6cda372b1a10d.
-rw-r--r--src/raylib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 40fcd98f..b172562d 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -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