diff options
Diffstat (limited to 'keyboards/pandora/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/pandora/keymaps/default/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/pandora/keymaps/default/keymap.c b/keyboards/pandora/keymaps/default/keymap.c index eea641d19..1878f078c 100644 --- a/keyboards/pandora/keymaps/default/keymap.c +++ b/keyboards/pandora/keymaps/default/keymap.c | |||
@@ -30,7 +30,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) { | |||
30 | } | 30 | } |
31 | 31 | ||
32 | // Encoder click function | 32 | // Encoder click function |
33 | void dip_switch_update_user(uint8_t index, bool active) { | 33 | bool dip_switch_update_user(uint8_t index, bool active) { |
34 | switch (index) { | 34 | switch (index) { |
35 | /* First encoder */ | 35 | /* First encoder */ |
36 | case 0: | 36 | case 0: |
@@ -39,4 +39,5 @@ void dip_switch_update_user(uint8_t index, bool active) { | |||
39 | } | 39 | } |
40 | break; | 40 | break; |
41 | } | 41 | } |
42 | return true; | ||
42 | } | 43 | } |