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 | |
parent | 666623d39adc052d2f585e908694279a9d5a65c6 (diff) | |
download | qmk_firmware-816f2f9cc234b5a98512a483b2781b1c2875f24f.tar.gz qmk_firmware-816f2f9cc234b5a98512a483b2781b1c2875f24f.zip |
Fix Kinetic speed condition (#12139)
-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 63e74baa9..99bfd6b96 100644 --- a/quantum/mousekey.c +++ b/quantum/mousekey.c | |||
@@ -108,7 +108,7 @@ static uint8_t wheel_unit(void) { | |||
108 | } | 108 | } |
109 | 109 | ||
110 | # else /* #ifndef MK_COMBINED */ | 110 | # else /* #ifndef MK_COMBINED */ |
111 | # ifndef MK_KINETIC_SPEED | 111 | # ifdef MK_KINETIC_SPEED |
112 | 112 | ||
113 | /* | 113 | /* |
114 | * Kinetic movement acceleration algorithm | 114 | * Kinetic movement acceleration algorithm |