diff options
Diffstat (limited to 'keyboards/le_chiffre/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/le_chiffre/keymaps/default/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/le_chiffre/keymaps/default/keymap.c b/keyboards/le_chiffre/keymaps/default/keymap.c index 9ff8fc299..5d4a4e0f9 100644 --- a/keyboards/le_chiffre/keymaps/default/keymap.c +++ b/keyboards/le_chiffre/keymaps/default/keymap.c | |||
@@ -62,7 +62,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
62 | ), | 62 | ), |
63 | }; | 63 | }; |
64 | 64 | ||
65 | void encoder_update_user(uint8_t index, bool clockwise) { | 65 | bool encoder_update_user(uint8_t index, bool clockwise) { |
66 | if (index == 0) { | 66 | if (index == 0) { |
67 | if (clockwise) { | 67 | if (clockwise) { |
68 | tap_code(KC_VOLU); | 68 | tap_code(KC_VOLU); |
@@ -70,6 +70,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
70 | tap_code(KC_VOLD); | 70 | tap_code(KC_VOLD); |
71 | } | 71 | } |
72 | } | 72 | } |
73 | return true; | ||
73 | } | 74 | } |
74 | 75 | ||
75 | #ifdef COMBO_ENABLE | 76 | #ifdef COMBO_ENABLE |