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