diff options
Diffstat (limited to 'keyboards/evolv/evolv.c')
| -rw-r--r-- | keyboards/evolv/evolv.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/keyboards/evolv/evolv.c b/keyboards/evolv/evolv.c index 276fac26fd..90df449ee2 100644 --- a/keyboards/evolv/evolv.c +++ b/keyboards/evolv/evolv.c @@ -17,12 +17,14 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  #include "evolv.h" -__attribute__((weak)) void encoder_update_user(uint8_t index, bool clockwise) { +bool encoder_update_kb(uint8_t index, bool clockwise) { +    if (!encoder_update_user(index, clockwise)) return false;      if (index == 0) { /* First encoder */          if (clockwise) {              tap_code(KC_VOLU);          } else {              tap_code(KC_VOLD);          } -    }  +    } +    return true;  }  | 
