diff options
Diffstat (limited to 'keyboards/arrayperipherals')
-rw-r--r-- | keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c | 3 | ||||
-rw-r--r-- | keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c b/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c index cf4433d8c..6a48a3102 100644 --- a/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c +++ b/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c | |||
@@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
17 | 17 | ||
18 | #include QMK_KEYBOARD_H | 18 | #include QMK_KEYBOARD_H |
19 | 19 | ||
20 | void encoder_update_user(uint8_t index, bool clockwise) { | 20 | bool encoder_update_user(uint8_t index, bool clockwise) { |
21 | if (index == 0) { /* First encoder */ | 21 | if (index == 0) { /* First encoder */ |
22 | if (clockwise) { | 22 | if (clockwise) { |
23 | tap_code(KC_MS_WH_UP); | 23 | tap_code(KC_MS_WH_UP); |
@@ -25,6 +25,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
25 | tap_code(KC_MS_WH_DOWN); | 25 | tap_code(KC_MS_WH_DOWN); |
26 | } | 26 | } |
27 | } | 27 | } |
28 | return true; | ||
28 | } | 29 | } |
29 | 30 | ||
30 | // | 31 | // |
diff --git a/keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c b/keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c index d419050a3..87739b377 100644 --- a/keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c +++ b/keyboards/arrayperipherals/1x4p1/keymaps/via/keymap.c | |||
@@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
17 | 17 | ||
18 | #include QMK_KEYBOARD_H | 18 | #include QMK_KEYBOARD_H |
19 | 19 | ||
20 | void encoder_update_user(uint8_t index, bool clockwise) { | 20 | bool encoder_update_user(uint8_t index, bool clockwise) { |
21 | if (index == 0) { /* First encoder */ | 21 | if (index == 0) { /* First encoder */ |
22 | if (clockwise) { | 22 | if (clockwise) { |
23 | tap_code(KC_MS_WH_UP); | 23 | tap_code(KC_MS_WH_UP); |
@@ -25,6 +25,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
25 | tap_code(KC_MS_WH_DOWN); | 25 | tap_code(KC_MS_WH_DOWN); |
26 | } | 26 | } |
27 | } | 27 | } |
28 | return true; | ||
28 | } | 29 | } |
29 | 30 | ||
30 | // | 31 | // |