diff options
Diffstat (limited to 'keyboards/keebio/sinc/keymaps/sethBarberee/keymap.c')
-rw-r--r-- | keyboards/keebio/sinc/keymaps/sethBarberee/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/keebio/sinc/keymaps/sethBarberee/keymap.c b/keyboards/keebio/sinc/keymaps/sethBarberee/keymap.c index 3d55f2c09..5ce139162 100644 --- a/keyboards/keebio/sinc/keymaps/sethBarberee/keymap.c +++ b/keyboards/keebio/sinc/keymaps/sethBarberee/keymap.c | |||
@@ -54,7 +54,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
54 | ), | 54 | ), |
55 | }; | 55 | }; |
56 | 56 | ||
57 | void encoder_update_user(uint8_t index, bool clockwise) { | 57 | bool encoder_update_user(uint8_t index, bool clockwise) { |
58 | if (index == 0) { | 58 | if (index == 0) { |
59 | if (clockwise) { | 59 | if (clockwise) { |
60 | tap_code(KC_PGDN); | 60 | tap_code(KC_PGDN); |
@@ -68,4 +68,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
68 | tap_code(KC_VOLD); | 68 | tap_code(KC_VOLD); |
69 | } | 69 | } |
70 | } | 70 | } |
71 | return true; | ||
71 | } | 72 | } |