aboutsummaryrefslogtreecommitdiff
path: root/quantum/wpm.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/wpm.c')
-rw-r--r--quantum/wpm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/wpm.c b/quantum/wpm.c
index c44b1172b..bec419a48 100644
--- a/quantum/wpm.c
+++ b/quantum/wpm.c
@@ -85,6 +85,6 @@ void update_wpm(uint16_t keycode) {
85void decay_wpm(void) { 85void decay_wpm(void) {
86 if (timer_elapsed(wpm_timer) > 1000) { 86 if (timer_elapsed(wpm_timer) > 1000) {
87 current_wpm += (-current_wpm) * wpm_smoothing; 87 current_wpm += (-current_wpm) * wpm_smoothing;
88 wpm_timer = timer_read(); 88 wpm_timer = timer_read();
89 } 89 }
90} 90}