From a5eeee4deda870863ff903ccf573c762165a7315 Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Sun, 10 Jul 2022 23:44:56 +0100 Subject: Fix infinite recursion in checkerboards/quark_plus (#17616) --- keyboards/checkerboards/quark_plus/quark_plus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/checkerboards/quark_plus/quark_plus.c b/keyboards/checkerboards/quark_plus/quark_plus.c index 036d3a96c5..0c0ae0cf4e 100644 --- a/keyboards/checkerboards/quark_plus/quark_plus.c +++ b/keyboards/checkerboards/quark_plus/quark_plus.c @@ -17,7 +17,7 @@ #include "quark_plus.h" bool encoder_update_kb(uint8_t index, bool clockwise) { - if (!encoder_update_kb(index, clockwise)) { return false; } + if (!encoder_update_user(index, clockwise)) { return false; } if (index == 1) { /* left encoder*/ if (clockwise){ tap_code(KC_WH_U); -- cgit v1.2.3