Diagonal micro move fix

This commit is contained in:
Evgeniy Petukhov 2018-06-07 23:00:37 +03:00 committed by Jack Humbert
parent a980a7972c
commit 03381962ac
1 changed files with 2 additions and 0 deletions

View File

@ -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();