summaryrefslogtreecommitdiffhomepage
path: root/src/gestures.h
diff options
context:
space:
mode:
authorRay <[email protected]>2021-09-01 23:11:31 +0200
committerRay <[email protected]>2021-09-01 23:11:31 +0200
commit6e76baa6a93d039e132fe11eedc74958971bf4a3 (patch)
treec90d7f233d362b34d84a106a656aa56517727d6b /src/gestures.h
parenta0f8682905fee1b65c903f1f46adff6e06ab6ae7 (diff)
downloadraylib-6e76baa6a93d039e132fe11eedc74958971bf4a3.tar.gz
raylib-6e76baa6a93d039e132fe11eedc74958971bf4a3.zip
WARNING: BREAKING: RENAMED: Font struct variables
RENAMED: GetCodepointsCount() -> GetCodepointCount() RENAMED: GetTouchPointsCount() -> GetTouchPointCount()
Diffstat (limited to 'src/gestures.h')
-rw-r--r--src/gestures.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gestures.h b/src/gestures.h
index 355f6081..09adffd0 100644
--- a/src/gestures.h
+++ b/src/gestures.h
@@ -118,7 +118,7 @@ void UpdateGestures(void); // Update gestures detec
void SetGesturesEnabled(unsigned int flags); // Enable a set of gestures using flags
bool IsGestureDetected(int gesture); // Check if a gesture have been detected
int GetGestureDetected(void); // Get latest detected gesture
-int GetTouchPointsCount(void); // Get touch points count
+int GetTouchPointCount(void); // Get touch points count
float GetGestureHoldDuration(void); // Get gesture hold time in milliseconds
Vector2 GetGestureDragVector(void); // Get gesture drag vector
float GetGestureDragAngle(void); // Get gesture drag angle
@@ -431,7 +431,7 @@ void UpdateGestures(void)
}
// Get number of touch points
-int GetTouchPointsCount(void)
+int GetTouchPointCount(void)
{
// NOTE: point count is calculated when ProcessGestureEvent(GestureEvent event) is called