diff options
Diffstat (limited to 'keyboards/m3n3van/keymaps/matthewdias/keymap.c')
-rw-r--r-- | keyboards/m3n3van/keymaps/matthewdias/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/m3n3van/keymaps/matthewdias/keymap.c b/keyboards/m3n3van/keymaps/matthewdias/keymap.c index 83d7265b0..9ed5028c7 100644 --- a/keyboards/m3n3van/keymaps/matthewdias/keymap.c +++ b/keyboards/m3n3van/keymaps/matthewdias/keymap.c | |||
@@ -40,7 +40,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
40 | ) | 40 | ) |
41 | }; | 41 | }; |
42 | 42 | ||
43 | void encoder_update_user(uint8_t index, bool clockwise) { | 43 | bool encoder_update_user(uint8_t index, bool clockwise) { |
44 | if (index == 0) { | 44 | if (index == 0) { |
45 | if (clockwise) { | 45 | if (clockwise) { |
46 | tap_code(KC_VOLU); | 46 | tap_code(KC_VOLU); |
@@ -48,4 +48,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
48 | tap_code(KC_VOLD); | 48 | tap_code(KC_VOLD); |
49 | } | 49 | } |
50 | } | 50 | } |
51 | return true; | ||
51 | } | 52 | } |