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/rgbkb/sol/keymaps/default/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/rgbkb/sol/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/rgbkb/sol/keymaps/default/keymap.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/keyboards/rgbkb/sol/keymaps/default/keymap.c b/keyboards/rgbkb/sol/keymaps/default/keymap.c index 04af5165e..0883cb775 100644 --- a/keyboards/rgbkb/sol/keymaps/default/keymap.c +++ b/keyboards/rgbkb/sol/keymaps/default/keymap.c | |||
@@ -223,9 +223,9 @@ const uint16_t PROGMEM encoders[][NUMBER_OF_ENCODERS * 2][2] = { | |||
223 | ) | 223 | ) |
224 | }; | 224 | }; |
225 | 225 | ||
226 | void encoder_update_user(uint8_t index, bool clockwise) { | 226 | bool encoder_update_user(uint8_t index, bool clockwise) { |
227 | if (!is_keyboard_master()) | 227 | if (!is_keyboard_master()) |
228 | return; | 228 | return true; |
229 | 229 | ||
230 | #ifdef RGB_OLED_MENU | 230 | #ifdef RGB_OLED_MENU |
231 | if (index == RGB_OLED_MENU) { | 231 | if (index == RGB_OLED_MENU) { |
@@ -244,6 +244,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
244 | if (keycode != KC_TRANSPARENT) | 244 | if (keycode != KC_TRANSPARENT) |
245 | tap_code16(keycode); | 245 | tap_code16(keycode); |
246 | } | 246 | } |
247 | return true; | ||
247 | } | 248 | } |
248 | #endif | 249 | #endif |
249 | 250 | ||