diff options
Diffstat (limited to 'layouts/community/ortho_4x12/mindsound/keymap.c')
-rw-r--r-- | layouts/community/ortho_4x12/mindsound/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/layouts/community/ortho_4x12/mindsound/keymap.c b/layouts/community/ortho_4x12/mindsound/keymap.c index 613f11d13..336545502 100644 --- a/layouts/community/ortho_4x12/mindsound/keymap.c +++ b/layouts/community/ortho_4x12/mindsound/keymap.c | |||
@@ -185,7 +185,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
185 | return true; | 185 | return true; |
186 | } | 186 | } |
187 | 187 | ||
188 | void encoder_update(bool clockwise) { | 188 | bool encoder_update_user(uint8_t index, bool clockwise) { |
189 | if (clockwise) { | 189 | if (clockwise) { |
190 | register_code(KC_VOLU); | 190 | register_code(KC_VOLU); |
191 | unregister_code(KC_VOLU); | 191 | unregister_code(KC_VOLU); |
@@ -193,6 +193,7 @@ void encoder_update(bool clockwise) { | |||
193 | register_code(KC_VOLD); | 193 | register_code(KC_VOLD); |
194 | unregister_code(KC_VOLD); | 194 | unregister_code(KC_VOLD); |
195 | } | 195 | } |
196 | return true; | ||
196 | } | 197 | } |
197 | 198 | ||
198 | // flicker implementation: | 199 | // flicker implementation: |