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/rgb_matrix/rgb_matrix.h | |
parent | a14c03b96e75212d042621f4c68ccbecb7ee9901 (diff) |
Rename `process_{led,rgb}_matrix()` (#23422)
Diffstat (limited to 'quantum/rgb_matrix/rgb_matrix.h')
-rw-r--r-- | quantum/rgb_matrix/rgb_matrix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/rgb_matrix/rgb_matrix.h b/quantum/rgb_matrix/rgb_matrix.h index f8a6845e02..ceb3185d1a 100644 --- a/quantum/rgb_matrix/rgb_matrix.h +++ b/quantum/rgb_matrix/rgb_matrix.h @@ -148,7 +148,7 @@ uint8_t rgb_matrix_map_row_column_to_led(uint8_t row, uint8_t column, uint8_t *l void rgb_matrix_set_color(int index, uint8_t red, uint8_t green, uint8_t blue); void rgb_matrix_set_color_all(uint8_t red, uint8_t green, uint8_t blue); -void process_rgb_matrix(uint8_t row, uint8_t col, bool pressed); +void rgb_matrix_handle_key_event(uint8_t row, uint8_t col, bool pressed); void rgb_matrix_task(void); |