diff options
author | 즈눅 <xnuk@users.noreply.github.com> | 2021-03-25 21:11:16 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-25 23:11:16 +1100 |
commit | 816f2f9cc234b5a98512a483b2781b1c2875f24f (patch) | |
tree | 38783c7667d7318e7d1d42f4cebeb64c23014945 /quantum | |
parent | 666623d39adc052d2f585e908694279a9d5a65c6 (diff) | |
download | qmk_firmware-816f2f9cc234b5a98512a483b2781b1c2875f24f.tar.gz qmk_firmware-816f2f9cc234b5a98512a483b2781b1c2875f24f.zip |
Fix Kinetic speed condition (#12139)
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/mousekey.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/mousekey.c b/quantum/mousekey.c index 63e74baa93..99bfd6b96f 100644 --- a/quantum/mousekey.c +++ b/quantum/mousekey.c @@ -108,7 +108,7 @@ static uint8_t wheel_unit(void) { } # else /* #ifndef MK_COMBINED */ -# ifndef MK_KINETIC_SPEED +# ifdef MK_KINETIC_SPEED /* * Kinetic movement acceleration algorithm |