Explorar o código

Diagonal micro move fix

Evgeniy Petukhov %!s(int64=7) %!d(string=hai) anos
pai
achega
03381962ac
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      tmk_core/common/mousekey.c

+ 2 - 0
tmk_core/common/mousekey.c

@@ -122,7 +122,9 @@ void mousekey_task(void)
     /* diagonal move [1/sqrt(2)] */
     if (mouse_report.x && mouse_report.y) {
         mouse_report.x = times_inv_sqrt2(mouse_report.x);
+        mouse_report.x = mouse_report.x == 0 ? 1 : mouse_report.x;
         mouse_report.y = times_inv_sqrt2(mouse_report.y);
+        mouse_report.y = mouse_report.y == 0 ? 1 : mouse_report.y;
     }
 
     if (mouse_report.v > 0) mouse_report.v = wheel_unit();