aboutsummaryrefslogtreecommitdiff
path: root/keyboards/evolv/evolv.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/evolv/evolv.c')
-rw-r--r--keyboards/evolv/evolv.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/keyboards/evolv/evolv.c b/keyboards/evolv/evolv.c
index 276fac26f..90df449ee 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/>.
17 17
18#include "evolv.h" 18#include "evolv.h"
19 19
20__attribute__((weak)) void encoder_update_user(uint8_t index, bool clockwise) { 20bool encoder_update_kb(uint8_t index, bool clockwise) {
21 if (!encoder_update_user(index, clockwise)) return false;
21 if (index == 0) { /* First encoder */ 22 if (index == 0) { /* First encoder */
22 if (clockwise) { 23 if (clockwise) {
23 tap_code(KC_VOLU); 24 tap_code(KC_VOLU);
24 } else { 25 } else {
25 tap_code(KC_VOLD); 26 tap_code(KC_VOLD);
26 } 27 }
27 } 28 }
29 return true;
28} 30}