diff options
Diffstat (limited to 'keyboards/keebio/bdn9/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/keebio/bdn9/keymaps/default/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/keebio/bdn9/keymaps/default/keymap.c b/keyboards/keebio/bdn9/keymaps/default/keymap.c index a88617caa..e33e94b53 100644 --- a/keyboards/keebio/bdn9/keymaps/default/keymap.c +++ b/keyboards/keebio/bdn9/keymaps/default/keymap.c | |||
@@ -45,7 +45,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
45 | ), | 45 | ), |
46 | }; | 46 | }; |
47 | 47 | ||
48 | void encoder_update_user(uint8_t index, bool clockwise) { | 48 | bool encoder_update_user(uint8_t index, bool clockwise) { |
49 | if (index == _LEFT) { | 49 | if (index == _LEFT) { |
50 | if (clockwise) { | 50 | if (clockwise) { |
51 | tap_code(KC_VOLU); | 51 | tap_code(KC_VOLU); |
@@ -67,4 +67,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
67 | tap_code(KC_PGUP); | 67 | tap_code(KC_PGUP); |
68 | } | 68 | } |
69 | } | 69 | } |
70 | return true; | ||
70 | } | 71 | } |