aboutsummaryrefslogtreecommitdiff
path: root/keyboards/planck/keymaps/mgalisa/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/planck/keymaps/mgalisa/keymap.c')
-rw-r--r--keyboards/planck/keymaps/mgalisa/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/planck/keymaps/mgalisa/keymap.c b/keyboards/planck/keymaps/mgalisa/keymap.c
index 09acceb4c..e3ecc8d7c 100644
--- a/keyboards/planck/keymaps/mgalisa/keymap.c
+++ b/keyboards/planck/keymaps/mgalisa/keymap.c
@@ -317,7 +317,7 @@ uint16_t muse_counter = 0;
317uint8_t muse_offset = 70; 317uint8_t muse_offset = 70;
318uint16_t muse_tempo = 50; 318uint16_t muse_tempo = 50;
319 319
320void encoder_update(bool clockwise) { 320bool encoder_update(bool clockwise) {
321 if (muse_mode) { 321 if (muse_mode) {
322 if (IS_LAYER_ON(_RAISE)) { 322 if (IS_LAYER_ON(_RAISE)) {
323 if (clockwise) { 323 if (clockwise) {
@@ -347,6 +347,7 @@ void encoder_update(bool clockwise) {
347 #endif 347 #endif
348 } 348 }
349 } 349 }
350 return true;
350} 351}
351 352
352void dip_update(uint8_t index, bool active) { 353void dip_update(uint8_t index, bool active) {