aboutsummaryrefslogtreecommitdiff
path: root/keyboards/planck/keymaps/oryx/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/planck/keymaps/oryx/keymap.c')
-rw-r--r--keyboards/planck/keymaps/oryx/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/planck/keymaps/oryx/keymap.c b/keyboards/planck/keymaps/oryx/keymap.c
index 7892d1a5f..8abe417d7 100644
--- a/keyboards/planck/keymaps/oryx/keymap.c
+++ b/keyboards/planck/keymaps/oryx/keymap.c
@@ -319,7 +319,7 @@ uint16_t muse_counter = 0;
319uint8_t muse_offset = 70; 319uint8_t muse_offset = 70;
320uint16_t muse_tempo = 50; 320uint16_t muse_tempo = 50;
321 321
322void encoder_update(bool clockwise) { 322bool encoder_update(bool clockwise) {
323 if (muse_mode) { 323 if (muse_mode) {
324 if (IS_LAYER_ON(_RAISE)) { 324 if (IS_LAYER_ON(_RAISE)) {
325 if (clockwise) { 325 if (clockwise) {
@@ -353,6 +353,7 @@ void encoder_update(bool clockwise) {
353 #endif 353 #endif
354 } 354 }
355 } 355 }
356 return true;
356} 357}
357 358
358void matrix_scan_user(void) { 359void matrix_scan_user(void) {