diff options
Diffstat (limited to 'keyboards/keebio/stick/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/keebio/stick/keymaps/default/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/keebio/stick/keymaps/default/keymap.c b/keyboards/keebio/stick/keymaps/default/keymap.c index 0521afa88..ea4ca3f54 100644 --- a/keyboards/keebio/stick/keymaps/default/keymap.c +++ b/keyboards/keebio/stick/keymaps/default/keymap.c | |||
@@ -24,7 +24,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
24 | ), | 24 | ), |
25 | }; | 25 | }; |
26 | 26 | ||
27 | void encoder_update_user(uint8_t index, bool clockwise) { | 27 | bool encoder_update_user(uint8_t index, bool clockwise) { |
28 | if (index == 0) { | 28 | if (index == 0) { |
29 | if (clockwise) { | 29 | if (clockwise) { |
30 | tap_code(KC_VOLU); | 30 | tap_code(KC_VOLU); |
@@ -39,4 +39,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
39 | tap_code(KC_UP); | 39 | tap_code(KC_UP); |
40 | } | 40 | } |
41 | } | 41 | } |
42 | return true; | ||
42 | } | 43 | } |