diff options
Diffstat (limited to 'keyboards/ealdin/quadrant/quadrant.c')
-rw-r--r-- | keyboards/ealdin/quadrant/quadrant.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/keyboards/ealdin/quadrant/quadrant.c b/keyboards/ealdin/quadrant/quadrant.c index 5a4acaf00..a5aff62da 100644 --- a/keyboards/ealdin/quadrant/quadrant.c +++ b/keyboards/ealdin/quadrant/quadrant.c | |||
@@ -17,7 +17,8 @@ | |||
17 | 17 | ||
18 | 18 | ||
19 | // Rotary encoder functions: | 19 | // Rotary encoder functions: |
20 | __attribute__((weak)) void encoder_update_user(uint8_t index, bool clockwise) { | 20 | bool encoder_update_kb(uint8_t index, bool clockwise) { |
21 | if (!encoder_update_user(index, clockwise)) return false; | ||
21 | uint16_t mapped_code = 0; | 22 | uint16_t mapped_code = 0; |
22 | if (index == 0) { | 23 | if (index == 0) { |
23 | if (clockwise) { | 24 | if (clockwise) { |
@@ -49,6 +50,7 @@ __attribute__((weak)) void encoder_update_user(uint8_t index, bool clockwise) { | |||
49 | } | 50 | } |
50 | tap_code(mapped_code); | 51 | tap_code(mapped_code); |
51 | } | 52 | } |
53 | return true; | ||
52 | } | 54 | } |
53 | 55 | ||
54 | void keyboard_pre_init_kb(void) { | 56 | void keyboard_pre_init_kb(void) { |
@@ -63,4 +65,3 @@ bool led_update_kb(led_t led_state) { | |||
63 | } | 65 | } |
64 | return true; | 66 | return true; |
65 | } | 67 | } |
66 | |||