diff options
Diffstat (limited to 'keyboards/keebio/bdn9/keymaps/via/keymap.c')
-rw-r--r-- | keyboards/keebio/bdn9/keymaps/via/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/keebio/bdn9/keymaps/via/keymap.c b/keyboards/keebio/bdn9/keymaps/via/keymap.c index b86f88a23..7c380a4fd 100644 --- a/keyboards/keebio/bdn9/keymaps/via/keymap.c +++ b/keyboards/keebio/bdn9/keymaps/via/keymap.c | |||
@@ -41,7 +41,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
41 | 41 | ||
42 | }; | 42 | }; |
43 | 43 | ||
44 | void encoder_update_user(uint8_t index, bool clockwise) { | 44 | bool encoder_update_user(uint8_t index, bool clockwise) { |
45 | if (index == _LEFT) { | 45 | if (index == _LEFT) { |
46 | if (clockwise) { | 46 | if (clockwise) { |
47 | tap_code(KC_VOLU); | 47 | tap_code(KC_VOLU); |
@@ -63,4 +63,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
63 | tap_code(KC_PGUP); | 63 | tap_code(KC_PGUP); |
64 | } | 64 | } |
65 | } | 65 | } |
66 | return true; | ||
66 | } | 67 | } |