diff options
author | Drashna Jaelre <drashna@live.com> | 2021-05-21 23:17:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 23:17:32 -0700 |
commit | a0fed0ea176d1c986e40fc4981b900509c90d66e (patch) | |
tree | ee12f5943046015ea0dce8e2a30a68bc8eb99dbe /keyboards/planck/keymaps/jetpacktuxedo/keymap.c | |
parent | 76c23b15abc824f867b48d8d5100dced2417d336 (diff) | |
download | qmk_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/planck/keymaps/jetpacktuxedo/keymap.c')
-rw-r--r-- | keyboards/planck/keymaps/jetpacktuxedo/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/planck/keymaps/jetpacktuxedo/keymap.c b/keyboards/planck/keymaps/jetpacktuxedo/keymap.c index b344bd076..3e195671a 100644 --- a/keyboards/planck/keymaps/jetpacktuxedo/keymap.c +++ b/keyboards/planck/keymaps/jetpacktuxedo/keymap.c | |||
@@ -190,7 +190,7 @@ uint16_t muse_tempo = 20; | |||
190 | 190 | ||
191 | extern float clicky_rand; | 191 | extern float clicky_rand; |
192 | 192 | ||
193 | void encoder_update(bool clockwise) { | 193 | bool encoder_update(bool clockwise) { |
194 | if (is_clicky_on()) { | 194 | if (is_clicky_on()) { |
195 | if (IS_LAYER_ON(_RAISE)) { | 195 | if (IS_LAYER_ON(_RAISE)) { |
196 | if (clockwise) { | 196 | if (clockwise) { |
@@ -238,6 +238,7 @@ void encoder_update(bool clockwise) { | |||
238 | } | 238 | } |
239 | } | 239 | } |
240 | } | 240 | } |
241 | return true; | ||
241 | } | 242 | } |
242 | 243 | ||
243 | void dip_update(uint8_t index, bool active) { | 244 | void dip_update(uint8_t index, bool active) { |