diff options
| author | Ryan <fauxpark@gmail.com> | 2024-04-06 01:43:52 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-05 15:43:52 +0100 |
| commit | 9fa91ad4947293f75df4c0e85ea594b1529afbca (patch) | |
| tree | 46fc994c899165e7a642cae166950d54d965976c /quantum/keyboard.c | |
| parent | a14c03b96e75212d042621f4c68ccbecb7ee9901 (diff) | |
Rename `process_{led,rgb}_matrix()` (#23422)
Diffstat (limited to 'quantum/keyboard.c')
| -rw-r--r-- | quantum/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c index 5aaa4b452f..df1dc1c3ee 100644 --- a/quantum/keyboard.c +++ b/quantum/keyboard.c | |||
| @@ -500,10 +500,10 @@ void keyboard_init(void) { | |||
| 500 | */ | 500 | */ |
| 501 | void switch_events(uint8_t row, uint8_t col, bool pressed) { | 501 | void switch_events(uint8_t row, uint8_t col, bool pressed) { |
| 502 | #if defined(LED_MATRIX_ENABLE) | 502 | #if defined(LED_MATRIX_ENABLE) |
| 503 | process_led_matrix(row, col, pressed); | 503 | led_matrix_handle_key_event(row, col, pressed); |
| 504 | #endif | 504 | #endif |
| 505 | #if defined(RGB_MATRIX_ENABLE) | 505 | #if defined(RGB_MATRIX_ENABLE) |
| 506 | process_rgb_matrix(row, col, pressed); | 506 | rgb_matrix_handle_key_event(row, col, pressed); |
| 507 | #endif | 507 | #endif |
| 508 | } | 508 | } |
| 509 | 509 | ||
