summaryrefslogtreecommitdiffstats
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 c44b1172b5..bec419a48e 100644
--- a/quantum/wpm.c
+++ b/quantum/wpm.c
@@ -85,6 +85,6 @@ void update_wpm(uint16_t keycode) {
void decay_wpm(void) {
if (timer_elapsed(wpm_timer) > 1000) {
current_wpm += (-current_wpm) * wpm_smoothing;
- wpm_timer = timer_read();
+ wpm_timer = timer_read();
}
}