aboutsummaryrefslogtreecommitdiff
path: root/keyboards/planck/keymaps/skug/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/planck/keymaps/skug/keymap.c')
-rw-r--r--keyboards/planck/keymaps/skug/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/planck/keymaps/skug/keymap.c b/keyboards/planck/keymaps/skug/keymap.c
index 27efc4759..a2162d911 100644
--- a/keyboards/planck/keymaps/skug/keymap.c
+++ b/keyboards/planck/keymaps/skug/keymap.c
@@ -264,7 +264,7 @@ uint16_t muse_counter = 0;
264uint8_t muse_offset = 70; 264uint8_t muse_offset = 70;
265uint16_t muse_tempo = 50; 265uint16_t muse_tempo = 50;
266 266
267void encoder_update(bool clockwise) { 267bool encoder_update(bool clockwise) {
268 if (muse_mode) { 268 if (muse_mode) {
269 if (IS_LAYER_ON(_RAISE)) { 269 if (IS_LAYER_ON(_RAISE)) {
270 if (clockwise) { 270 if (clockwise) {
@@ -288,6 +288,7 @@ void encoder_update(bool clockwise) {
288 unregister_code(KC_PGUP); 288 unregister_code(KC_PGUP);
289 } 289 }
290 } 290 }
291 return true;
291} 292}
292 293
293void dip_update(uint8_t index, bool active) { 294void dip_update(uint8_t index, bool active) {