diff options
Diffstat (limited to 'keyboards/keebio/dsp40/keymaps/via/keymap.c')
-rwxr-xr-x | keyboards/keebio/dsp40/keymaps/via/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/keebio/dsp40/keymaps/via/keymap.c b/keyboards/keebio/dsp40/keymaps/via/keymap.c index dfa7a1832..6575bbc8c 100755 --- a/keyboards/keebio/dsp40/keymaps/via/keymap.c +++ b/keyboards/keebio/dsp40/keymaps/via/keymap.c | |||
@@ -64,7 +64,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
64 | ) | 64 | ) |
65 | }; | 65 | }; |
66 | 66 | ||
67 | void encoder_update_user(uint8_t index, bool clockwise) { | 67 | bool encoder_update_user(uint8_t index, bool clockwise) { |
68 | if (index == 0) { | 68 | if (index == 0) { |
69 | if (clockwise) { | 69 | if (clockwise) { |
70 | tap_code(KC_VOLU); | 70 | tap_code(KC_VOLU); |
@@ -72,4 +72,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
72 | tap_code(KC_VOLD); | 72 | tap_code(KC_VOLD); |
73 | } | 73 | } |
74 | } | 74 | } |
75 | return true; | ||
75 | } | 76 | } |