diff options
Diffstat (limited to 'keyboards/lily58/keymaps/drasbeck/keymap.c')
-rw-r--r-- | keyboards/lily58/keymaps/drasbeck/keymap.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/keyboards/lily58/keymaps/drasbeck/keymap.c b/keyboards/lily58/keymaps/drasbeck/keymap.c index 0fc1bfb79..e575736c0 100644 --- a/keyboards/lily58/keymaps/drasbeck/keymap.c +++ b/keyboards/lily58/keymaps/drasbeck/keymap.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) 2020 Max Drasbeck | 1 | /* Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) 2020 Max Drasbeck |
2 | * | 2 | * |
3 | * You are free to: | 3 | * You are free to: |
4 | * | 4 | * |
@@ -153,7 +153,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
153 | } | 153 | } |
154 | 154 | ||
155 | #ifdef ENCODER_ENABLE | 155 | #ifdef ENCODER_ENABLE |
156 | void encoder_update_user(uint8_t index, bool clockwise) { | 156 | bool encoder_update_user(uint8_t index, bool clockwise) { |
157 | // index 1 == minion side | 157 | // index 1 == minion side |
158 | if (index == 1) { | 158 | if (index == 1) { |
159 | if (clockwise) { | 159 | if (clockwise) { |
@@ -162,5 +162,6 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
162 | tap_code(KC_VOLU); | 162 | tap_code(KC_VOLU); |
163 | } | 163 | } |
164 | } | 164 | } |
165 | return true; | ||
165 | } | 166 | } |
166 | #endif | 167 | #endif |