Fix infinite recursion in checkerboards/quark_plus

zvecr-patch-1
Joel Challis 3 years ago committed by GitHub
parent 2106acc24a
commit 2929688571
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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);

Loading…
Cancel
Save