summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authorEvgeniy Petukhov <evgeniy.petukhov@gmail.com>2018-06-07 22:00:37 +0200
committerJack Humbert <jack.humb@gmail.com>2018-06-29 04:10:53 +0200
commit03381962ace7c44f4566d6f6b05005f24b212fa1 (patch)
tree8b4e8f5e878774525913fa1699fce473d9ac382d /tmk_core
parenta980a7972c5ef480a1c114d48f83377ab1d10a33 (diff)
downloadqmk_firmware-03381962ace7c44f4566d6f6b05005f24b212fa1.tar.gz
qmk_firmware-03381962ace7c44f4566d6f6b05005f24b212fa1.tar.xz
Diagonal micro move fix
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/common/mousekey.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tmk_core/common/mousekey.c b/tmk_core/common/mousekey.c
index aa128f0e8..581e7b8a0 100644
--- a/tmk_core/common/mousekey.c
+++ b/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();