diff options
Diffstat (limited to 'keyboards/planck/keymaps/oryx/keymap.c')
-rw-r--r-- | keyboards/planck/keymaps/oryx/keymap.c | 3 |
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; | |||
319 | uint8_t muse_offset = 70; | 319 | uint8_t muse_offset = 70; |
320 | uint16_t muse_tempo = 50; | 320 | uint16_t muse_tempo = 50; |
321 | 321 | ||
322 | void encoder_update(bool clockwise) { | 322 | bool 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 | ||
358 | void matrix_scan_user(void) { | 359 | void matrix_scan_user(void) { |