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/msiu/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/msiu/keymap.c')
-rw-r--r-- | keyboards/planck/keymaps/msiu/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/planck/keymaps/msiu/keymap.c b/keyboards/planck/keymaps/msiu/keymap.c index aea59e8d7..bc067973c 100644 --- a/keyboards/planck/keymaps/msiu/keymap.c +++ b/keyboards/planck/keymaps/msiu/keymap.c | |||
@@ -128,7 +128,7 @@ uint16_t muse_counter = 0; | |||
128 | uint8_t muse_offset = 70; | 128 | uint8_t muse_offset = 70; |
129 | uint16_t muse_tempo = 50; | 129 | uint16_t muse_tempo = 50; |
130 | 130 | ||
131 | void encoder_update(bool clockwise) { | 131 | bool encoder_update(bool clockwise) { |
132 | if (muse_mode) { | 132 | if (muse_mode) { |
133 | if (IS_LAYER_ON(_RAISE)) { | 133 | if (IS_LAYER_ON(_RAISE)) { |
134 | if (clockwise) { | 134 | if (clockwise) { |
@@ -152,6 +152,7 @@ void encoder_update(bool clockwise) { | |||
152 | unregister_code(KC_PGUP); | 152 | unregister_code(KC_PGUP); |
153 | } | 153 | } |
154 | } | 154 | } |
155 | return true; | ||
155 | } | 156 | } |
156 | 157 | ||
157 | void dip_update(uint8_t index, bool active) { | 158 | void dip_update(uint8_t index, bool active) { |