diff options
author | Drashna Jaelre <drashna@live.com> | 2021-07-01 08:22:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-01 08:22:21 -0700 |
commit | 0bde920817ef458f2ad61a66ce76a2535bbc261b (patch) | |
tree | 9c7078bd67547fc44085cec1fbfbc82a47047161 /keyboards/planck/keymaps/gitdrik/keymap.c | |
parent | 8f78be076debfc073741f1bc1ba424f1271191d9 (diff) | |
download | qmk_firmware-0bde920817ef458f2ad61a66ce76a2535bbc261b.tar.gz qmk_firmware-0bde920817ef458f2ad61a66ce76a2535bbc261b.zip |
Convert Dip Switch callbacks to boolean functions (#13399)
Diffstat (limited to 'keyboards/planck/keymaps/gitdrik/keymap.c')
-rw-r--r-- | keyboards/planck/keymaps/gitdrik/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/planck/keymaps/gitdrik/keymap.c b/keyboards/planck/keymaps/gitdrik/keymap.c index 9cc5f7517..e3e03929a 100644 --- a/keyboards/planck/keymaps/gitdrik/keymap.c +++ b/keyboards/planck/keymaps/gitdrik/keymap.c | |||
@@ -170,7 +170,7 @@ bool encoder_update(bool clockwise) { | |||
170 | return true; | 170 | return true; |
171 | } | 171 | } |
172 | 172 | ||
173 | void dip_switch_update_user(uint8_t index, bool active) { | 173 | bool dip_switch_update_user(uint8_t index, bool active) { |
174 | switch (index) { | 174 | switch (index) { |
175 | case 0: { | 175 | case 0: { |
176 | #ifdef AUDIO_ENABLE | 176 | #ifdef AUDIO_ENABLE |
@@ -199,6 +199,7 @@ void dip_switch_update_user(uint8_t index, bool active) { | |||
199 | muse_mode = false; | 199 | muse_mode = false; |
200 | } | 200 | } |
201 | } | 201 | } |
202 | return true; | ||
202 | } | 203 | } |
203 | 204 | ||
204 | void matrix_scan_user(void) { | 205 | void matrix_scan_user(void) { |