Explorar o código

Fix mousekey parameter bug

tmk %!s(int64=13) %!d(string=hai) anos
pai
achega
454f7bc716
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      common/mousekey.c

+ 1 - 1
common/mousekey.c

@@ -86,7 +86,7 @@ static uint8_t wheel_unit(void)
         unit = (MOUSEKEY_WHEEL_DELTA * mk_wheel_max_speed);
     } else if (mousekey_repeat == 0) {
         unit = MOUSEKEY_WHEEL_DELTA;
-    } else if (mousekey_repeat >= mk_time_to_max) {
+    } else if (mousekey_repeat >= mk_wheel_time_to_max) {
         unit = MOUSEKEY_WHEEL_DELTA * mk_wheel_max_speed;
     } else {
         unit = (MOUSEKEY_WHEEL_DELTA * mk_wheel_max_speed * mousekey_repeat) / mk_wheel_time_to_max;