diff options
Diffstat (limited to 'keyboards/dmqdesign/spin/keymaps/codecoffeecode/keymap.c')
-rw-r--r-- | keyboards/dmqdesign/spin/keymaps/codecoffeecode/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/dmqdesign/spin/keymaps/codecoffeecode/keymap.c b/keyboards/dmqdesign/spin/keymaps/codecoffeecode/keymap.c index 6e0911da5..d6653691b 100644 --- a/keyboards/dmqdesign/spin/keymaps/codecoffeecode/keymap.c +++ b/keyboards/dmqdesign/spin/keymaps/codecoffeecode/keymap.c | |||
@@ -24,7 +24,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
24 | ), | 24 | ), |
25 | }; | 25 | }; |
26 | 26 | ||
27 | void encoder_update_user(uint8_t index, bool clockwise) { | 27 | bool encoder_update_user(uint8_t index, bool clockwise) { |
28 | switch(index) { | 28 | switch(index) { |
29 | case 0: | 29 | case 0: |
30 | if (clockwise) { | 30 | if (clockwise) { |
@@ -48,4 +48,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
48 | } | 48 | } |
49 | break; | 49 | break; |
50 | } | 50 | } |
51 | return true; | ||
51 | } | 52 | } |