aboutsummaryrefslogtreecommitdiff
path: root/keyboards/planck/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/planck/keymaps/default/keymap.c')
-rw-r--r--keyboards/planck/keymaps/default/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/planck/keymaps/default/keymap.c b/keyboards/planck/keymaps/default/keymap.c
index 304d320b6..644dae6b9 100644
--- a/keyboards/planck/keymaps/default/keymap.c
+++ b/keyboards/planck/keymaps/default/keymap.c
@@ -289,7 +289,7 @@ bool encoder_update(bool clockwise) {
289 return true; 289 return true;
290} 290}
291 291
292void dip_switch_update_user(uint8_t index, bool active) { 292bool dip_switch_update_user(uint8_t index, bool active) {
293 switch (index) { 293 switch (index) {
294 case 0: { 294 case 0: {
295#ifdef AUDIO_ENABLE 295#ifdef AUDIO_ENABLE
@@ -318,6 +318,7 @@ void dip_switch_update_user(uint8_t index, bool active) {
318 muse_mode = false; 318 muse_mode = false;
319 } 319 }
320 } 320 }
321 return true;
321} 322}
322 323
323void matrix_scan_user(void) { 324void matrix_scan_user(void) {