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/nullbitsco/nibble/keymaps/iso/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/nullbitsco/nibble/keymaps/iso/keymap.c')
-rw-r--r-- | keyboards/nullbitsco/nibble/keymaps/iso/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/nullbitsco/nibble/keymaps/iso/keymap.c b/keyboards/nullbitsco/nibble/keymaps/iso/keymap.c index 214034ef8..270350ca0 100644 --- a/keyboards/nullbitsco/nibble/keymaps/iso/keymap.c +++ b/keyboards/nullbitsco/nibble/keymaps/iso/keymap.c | |||
@@ -105,7 +105,7 @@ void change_RGB(bool clockwise) { | |||
105 | } | 105 | } |
106 | } | 106 | } |
107 | 107 | ||
108 | void encoder_update_user(uint8_t index, bool clockwise) { | 108 | bool encoder_update_user(uint8_t index, bool clockwise) { |
109 | if (layer_state_is(1)) { | 109 | if (layer_state_is(1)) { |
110 | //change RGB settings | 110 | //change RGB settings |
111 | change_RGB(clockwise); | 111 | change_RGB(clockwise); |
@@ -117,6 +117,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
117 | tap_code(KC_VOLD); | 117 | tap_code(KC_VOLD); |
118 | } | 118 | } |
119 | } | 119 | } |
120 | return true; | ||
120 | } | 121 | } |
121 | 122 | ||
122 | void matrix_init_user(void) { | 123 | void matrix_init_user(void) { |