aboutsummaryrefslogtreecommitdiff
path: root/keyboards/monarch/keymaps/via/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/monarch/keymaps/via/keymap.c')
-rw-r--r--keyboards/monarch/keymaps/via/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/monarch/keymaps/via/keymap.c b/keyboards/monarch/keymaps/via/keymap.c
index 1f14b195d..079ff65a6 100644
--- a/keyboards/monarch/keymaps/via/keymap.c
+++ b/keyboards/monarch/keymaps/via/keymap.c
@@ -76,7 +76,7 @@ void matrix_scan_user(void) {
76 } 76 }
77} 77}
78 78
79void encoder_update_user(uint8_t index, bool clockwise) { 79bool encoder_update_user(uint8_t index, bool clockwise) {
80 if (clockwise) { 80 if (clockwise) {
81 encoder_cw.pressed = true; 81 encoder_cw.pressed = true;
82 encoder_cw.time = (timer_read() | 1); 82 encoder_cw.time = (timer_read() | 1);
@@ -86,4 +86,5 @@ void encoder_update_user(uint8_t index, bool clockwise) {
86 encoder_ccw.time = (timer_read() | 1); 86 encoder_ccw.time = (timer_read() | 1);
87 action_exec(encoder_ccw); 87 action_exec(encoder_ccw);
88 } 88 }
89 return true;
89} 90}