diff options
Diffstat (limited to 'keyboards/punk75/keymaps/via/keymap.c')
-rw-r--r-- | keyboards/punk75/keymaps/via/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/punk75/keymaps/via/keymap.c b/keyboards/punk75/keymaps/via/keymap.c index 265814d13..44deb8bd9 100644 --- a/keyboards/punk75/keymaps/via/keymap.c +++ b/keyboards/punk75/keymaps/via/keymap.c | |||
@@ -73,7 +73,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
73 | return true; | 73 | return true; |
74 | } | 74 | } |
75 | 75 | ||
76 | void encoder_update_user(uint8_t index, bool clockwise) { | 76 | bool encoder_update_user(uint8_t index, bool clockwise) { |
77 | if (index == 0) { /* Encoder on the LEFT */ | 77 | if (index == 0) { /* Encoder on the LEFT */ |
78 | if (clockwise) { | 78 | if (clockwise) { |
79 | tap_code(KC_VOLU); | 79 | tap_code(KC_VOLU); |
@@ -87,4 +87,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
87 | tap_code(KC_VOLD); | 87 | tap_code(KC_VOLD); |
88 | } | 88 | } |
89 | } | 89 | } |
90 | return true; | ||
90 | } | 91 | } |