aboutsummaryrefslogtreecommitdiff
path: root/keyboards/hub20/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/hub20/keymaps/default/keymap.c')
-rw-r--r--keyboards/hub20/keymaps/default/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/hub20/keymaps/default/keymap.c b/keyboards/hub20/keymaps/default/keymap.c
index c46731287..a0f048825 100644
--- a/keyboards/hub20/keymaps/default/keymap.c
+++ b/keyboards/hub20/keymaps/default/keymap.c
@@ -36,7 +36,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
36) 36)
37}; 37};
38 38
39void encoder_update_user(uint8_t index, bool clockwise) { 39bool encoder_update_user(uint8_t index, bool clockwise) {
40 if (index == 0) { /* Left Encoder */ 40 if (index == 0) { /* Left Encoder */
41 if (clockwise) { 41 if (clockwise) {
42 tap_code(KC_VOLU); 42 tap_code(KC_VOLU);
@@ -50,4 +50,5 @@ void encoder_update_user(uint8_t index, bool clockwise) {
50 tap_code(KC_MPRV); 50 tap_code(KC_MPRV);
51 } 51 }
52 } 52 }
53 return true;
53} 54}