diff options
| author | Ryan <fauxpark@gmail.com> | 2021-05-13 09:17:18 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-13 09:17:18 +1000 |
| commit | 92fbadeb1bb9f9c37cfeef2a4f81f2f154e1226b (patch) | |
| tree | 0f8d8c57fdbde6db9d874e47e5fb008628a9598b /quantum/rgb_matrix.c | |
| parent | 07800e82c96c12919061beab25d37d10073fe57f (diff) | |
| download | qmk_firmware-92fbadeb1bb9f9c37cfeef2a4f81f2f154e1226b.tar.gz qmk_firmware-92fbadeb1bb9f9c37cfeef2a4f81f2f154e1226b.zip | |
Rename `point_t` -> `led_point_t` (#12864)
Diffstat (limited to 'quantum/rgb_matrix.c')
| -rw-r--r-- | quantum/rgb_matrix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c index 097c5302d..e716c6aad 100644 --- a/quantum/rgb_matrix.c +++ b/quantum/rgb_matrix.c | |||
| @@ -26,9 +26,9 @@ | |||
| 26 | #include <lib/lib8tion/lib8tion.h> | 26 | #include <lib/lib8tion/lib8tion.h> |
| 27 | 27 | ||
| 28 | #ifndef RGB_MATRIX_CENTER | 28 | #ifndef RGB_MATRIX_CENTER |
| 29 | const point_t k_rgb_matrix_center = {112, 32}; | 29 | const led_point_t k_rgb_matrix_center = {112, 32}; |
| 30 | #else | 30 | #else |
| 31 | const point_t k_rgb_matrix_center = RGB_MATRIX_CENTER; | 31 | const led_point_t k_rgb_matrix_center = RGB_MATRIX_CENTER; |
| 32 | #endif | 32 | #endif |
| 33 | 33 | ||
| 34 | __attribute__((weak)) RGB rgb_matrix_hsv_to_rgb(HSV hsv) { return hsv_to_rgb(hsv); } | 34 | __attribute__((weak)) RGB rgb_matrix_hsv_to_rgb(HSV hsv) { return hsv_to_rgb(hsv); } |
