You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
517 B

  1. #pragma once
  2. // Sets good default for the speed of the mouse.
  3. #undef MOUSEKEY_INTERVAL
  4. #undef MOUSEKEY_DELAY
  5. #undef MOUSEKEY_TIME_TO_MAX
  6. #undef MOUSEKEY_MAX_SPEED
  7. #define MOUSEKEY_INTERVAL 20
  8. #define MOUSEKEY_DELAY 100
  9. #define MOUSEKEY_TIME_TO_MAX 60
  10. #define MOUSEKEY_MAX_SPEED 7
  11. #undef MOUSEKEY_WHEEL_MAX_SPEED
  12. #undef MOUSEKEY_WHEEL_TIME_TO_MAX
  13. #undef MOUSEKEY_WHEEL_DELAY
  14. #define MOUSEKEY_WHEEL_MAX_SPEED 5
  15. #define MOUSEKEY_WHEEL_TIME_TO_MAX 60
  16. #define MOUSEKEY_WHEEL_DELAY 100