diff options
Diffstat (limited to 'keyboards/keebio/bdn9/keymaps/test/keymap.c')
-rw-r--r-- | keyboards/keebio/bdn9/keymaps/test/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/keebio/bdn9/keymaps/test/keymap.c b/keyboards/keebio/bdn9/keymaps/test/keymap.c index c42100ddf..ecf7338a5 100644 --- a/keyboards/keebio/bdn9/keymaps/test/keymap.c +++ b/keyboards/keebio/bdn9/keymaps/test/keymap.c | |||
@@ -14,7 +14,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
14 | ), | 14 | ), |
15 | }; | 15 | }; |
16 | 16 | ||
17 | void encoder_update_user(uint8_t index, bool clockwise) { | 17 | bool encoder_update_user(uint8_t index, bool clockwise) { |
18 | if (index == _LEFT) { | 18 | if (index == _LEFT) { |
19 | if (clockwise) { | 19 | if (clockwise) { |
20 | rgblight_increase_hue(); | 20 | rgblight_increase_hue(); |
@@ -36,4 +36,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
36 | rgblight_decrease_val(); | 36 | rgblight_decrease_val(); |
37 | } | 37 | } |
38 | } | 38 | } |
39 | return true; | ||
39 | } | 40 | } |