diff options
Diffstat (limited to 'keyboards/punk75/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/punk75/keymaps/default/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/punk75/keymaps/default/keymap.c b/keyboards/punk75/keymaps/default/keymap.c index fe4e87cce..30910a4a0 100644 --- a/keyboards/punk75/keymaps/default/keymap.c +++ b/keyboards/punk75/keymaps/default/keymap.c | |||
@@ -78,7 +78,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
78 | return true; | 78 | return true; |
79 | } | 79 | } |
80 | 80 | ||
81 | void encoder_update_user(uint8_t index, bool clockwise) { | 81 | bool encoder_update_user(uint8_t index, bool clockwise) { |
82 | if (index == 0) { /* Encoder on the LEFT */ | 82 | if (index == 0) { /* Encoder on the LEFT */ |
83 | if (clockwise) { | 83 | if (clockwise) { |
84 | tap_code(KC_VOLU); | 84 | tap_code(KC_VOLU); |
@@ -92,4 +92,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
92 | tap_code(KC_VOLD); | 92 | tap_code(KC_VOLD); |
93 | } | 93 | } |
94 | } | 94 | } |
95 | return true; | ||
95 | } | 96 | } |