From 5a61934fd8254f616a9587fdb6d590f907e1e56d Mon Sep 17 00:00:00 2001 From: Luis Garcia Date: Sun, 11 Jun 2023 17:39:38 -0600 Subject: [PATCH] chore: update function name on all cases. --- keyboards/planck/rev7/matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/planck/rev7/matrix.c b/keyboards/planck/rev7/matrix.c index 831e45e7ccb..2701fc0b3fe 100644 --- a/keyboards/planck/rev7/matrix.c +++ b/keyboards/planck/rev7/matrix.c @@ -89,7 +89,7 @@ bool encoder_update(uint8_t index, uint8_t state) { if (encoder_pulses[i] <= -ENCODER_RESOLUTION) { encoder_value[index]--; changed = true; - encoder_update_fn(index, true); + encoder_cntx_fn(index, true); } encoder_pulses[i] %= ENCODER_RESOLUTION; #ifdef ENCODER_DEFAULT_POS