diff options
| author | jestarray <[email protected]> | 2023-10-26 01:24:21 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-26 10:24:21 +0200 |
| commit | 804f1a83eba7aa5cbb701457e8d6cda372b1a10d (patch) | |
| tree | 4f7b8cc3fe3ff85feeda71cbd087b46bb4564eb5 | |
| parent | 2f6b2897fe9d6a777b4f32ff6490436fbbb1b54b (diff) | |
| download | raylib-804f1a83eba7aa5cbb701457e8d6cda372b1a10d.tar.gz raylib-804f1a83eba7aa5cbb701457e8d6cda372b1a10d.zip | |
Fix IsGestureDetected parameter inconsistency in raylib.h with rgextures.h (#3464)
closes https://github.com/raysan5/raylib/issues/3463
| -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 b172562d..40fcd98f 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(unsigned int gesture); // Check if a gesture have been detected +RLAPI bool IsGestureDetected(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 |
