diff options
| author | Ray <[email protected]> | 2023-10-26 10:28:00 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-10-26 10:28:00 +0200 |
| commit | eddeafd2ed3be0b738a9ebcb5083448bd9640542 (patch) | |
| tree | 29a22446e09ec9dc70d8c0f57a98a0670795cc68 | |
| parent | 804f1a83eba7aa5cbb701457e8d6cda372b1a10d (diff) | |
| download | raylib-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.h | 2 |
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 |
