aboutsummaryrefslogtreecommitdiffstats
path: root/src/ginput/sys_options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ginput/sys_options.h')
-rw-r--r--src/ginput/sys_options.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/ginput/sys_options.h b/src/ginput/sys_options.h
index 4bc37715..6de8ea83 100644
--- a/src/ginput/sys_options.h
+++ b/src/ginput/sys_options.h
@@ -134,12 +134,12 @@
#endif
/**
* @brief Milliseconds to generate a CXTCLICK on a touch device.
- * @details Defaults to 700 millseconds
+ * @details Defaults to 500 millseconds
* @note If you hold the touch down for longer than this a CXTCLICK is generated
* but only on a touch device.
*/
#ifndef GINPUT_TOUCH_CXTCLICK_TIME
- #define GINPUT_TOUCH_CXTCLICK_TIME 700
+ #define GINPUT_TOUCH_CXTCLICK_TIME 500
#endif
/**
* @brief There is a user supplied routine to load mouse calibration data
@@ -150,14 +150,6 @@
#define GINPUT_TOUCH_USER_CALIBRATION_LOAD FALSE
#endif
/**
- * @brief The buffer returned by the users @p LoadMouseCalibration() routine must be gfxFree()'d
- * by the mouse code.
- * @details Defaults to FALSE
- */
- #ifndef GINPUT_TOUCH_USER_CALIBRATION_FREE
- #define GINPUT_TOUCH_USER_CALIBRATION_FREE FALSE
- #endif
- /**
* @brief There is a user supplied routine to save mouse calibration data
* @details Defaults to FALSE
* @note If TRUE the user must supply the @p SaveMouseCalibration() routine.