aboutsummaryrefslogtreecommitdiff
path: root/keyboards/tunks
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-05-21 23:17:32 -0700
committerGitHub <noreply@github.com>2021-05-21 23:17:32 -0700
commita0fed0ea176d1c986e40fc4981b900509c90d66e (patch)
treeee12f5943046015ea0dce8e2a30a68bc8eb99dbe /keyboards/tunks
parent76c23b15abc824f867b48d8d5100dced2417d336 (diff)
downloadqmk_firmware-a0fed0ea176d1c986e40fc4981b900509c90d66e.tar.gz
qmk_firmware-a0fed0ea176d1c986e40fc4981b900509c90d66e.zip
Convert Encoder callbacks to be boolean functions (#12805)
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'keyboards/tunks')
-rw-r--r--keyboards/tunks/ergo33/keymaps/default/keymap.c3
-rw-r--r--keyboards/tunks/ergo33/keymaps/prpro/keymap.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/keyboards/tunks/ergo33/keymaps/default/keymap.c b/keyboards/tunks/ergo33/keymaps/default/keymap.c
index 664f7b415..7234acf1d 100644
--- a/keyboards/tunks/ergo33/keymaps/default/keymap.c
+++ b/keyboards/tunks/ergo33/keymaps/default/keymap.c
@@ -46,7 +46,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
46}; 46};
47 47
48#ifdef ENCODER_ENABLE 48#ifdef ENCODER_ENABLE
49void encoder_update_user(uint8_t index, bool clockwise) { 49bool encoder_update_user(uint8_t index, bool clockwise) {
50 if (index == 0) { 50 if (index == 0) {
51 if (clockwise) { 51 if (clockwise) {
52 tap_code(KC_MS_WH_DOWN); 52 tap_code(KC_MS_WH_DOWN);
@@ -54,6 +54,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
54 tap_code(KC_MS_WH_UP); 54 tap_code(KC_MS_WH_UP);
55 } 55 }
56 } 56 }
57 return true;
57} 58}
58#endif 59#endif
59 60
diff --git a/keyboards/tunks/ergo33/keymaps/prpro/keymap.c b/keyboards/tunks/ergo33/keymaps/prpro/keymap.c
index 2ccba8b1e..db49eeb7f 100644
--- a/keyboards/tunks/ergo33/keymaps/prpro/keymap.c
+++ b/keyboards/tunks/ergo33/keymaps/prpro/keymap.c
@@ -91,7 +91,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
91}; 91};
92 92
93#ifdef ENCODER_ENABLE 93#ifdef ENCODER_ENABLE
94void encoder_update_user(uint8_t index, bool clockwise) { 94bool encoder_update_user(uint8_t index, bool clockwise) {
95 if (index == 0) { 95 if (index == 0) {
96 if (clockwise) { 96 if (clockwise) {
97 tap_code(KC_MS_WH_DOWN); 97 tap_code(KC_MS_WH_DOWN);
@@ -99,6 +99,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
99 tap_code(KC_MS_WH_UP); 99 tap_code(KC_MS_WH_UP);
100 } 100 }
101 } 101 }
102 return true;
102} 103}
103#endif 104#endif
104 105