diff options
Diffstat (limited to 'tmk_core/common/mousekey.c')
| -rw-r--r-- | tmk_core/common/mousekey.c | 2 |
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) | |||
| 122 | /* diagonal move [1/sqrt(2)] */ | 122 | /* diagonal move [1/sqrt(2)] */ |
| 123 | if (mouse_report.x && mouse_report.y) { | 123 | if (mouse_report.x && mouse_report.y) { |
| 124 | mouse_report.x = times_inv_sqrt2(mouse_report.x); | 124 | mouse_report.x = times_inv_sqrt2(mouse_report.x); |
| 125 | mouse_report.x = mouse_report.x == 0 ? 1 : mouse_report.x; | ||
| 125 | mouse_report.y = times_inv_sqrt2(mouse_report.y); | 126 | mouse_report.y = times_inv_sqrt2(mouse_report.y); |
| 127 | mouse_report.y = mouse_report.y == 0 ? 1 : mouse_report.y; | ||
| 126 | } | 128 | } |
| 127 | 129 | ||
| 128 | if (mouse_report.v > 0) mouse_report.v = wheel_unit(); | 130 | if (mouse_report.v > 0) mouse_report.v = wheel_unit(); |
