aboutsummaryrefslogtreecommitdiff
path: root/keyboards/helix/rev3_5rows/rev3_5rows.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/helix/rev3_5rows/rev3_5rows.c')
-rw-r--r--keyboards/helix/rev3_5rows/rev3_5rows.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/helix/rev3_5rows/rev3_5rows.c b/keyboards/helix/rev3_5rows/rev3_5rows.c
index c034c8338..884c244e3 100644
--- a/keyboards/helix/rev3_5rows/rev3_5rows.c
+++ b/keyboards/helix/rev3_5rows/rev3_5rows.c
@@ -30,7 +30,7 @@ void set_mac_mode(bool macmode) {
30 eeconfig_update_keymap(keymap_config.raw); 30 eeconfig_update_keymap(keymap_config.raw);
31} 31}
32 32
33void dip_switch_update_kb(uint8_t index, bool active) { 33bool dip_switch_update_kb(uint8_t index, bool active) {
34 switch (index) { 34 switch (index) {
35 case 0: 35 case 0:
36 if(active) { // Left no.1 Helix rev3 common 36 if(active) { // Left no.1 Helix rev3 common
@@ -43,4 +43,5 @@ void dip_switch_update_kb(uint8_t index, bool active) {
43 dip_switch_update_user(index, active); 43 dip_switch_update_user(index, active);
44 break; 44 break;
45 } 45 }
46 return true;
46} 47}