Rename point_t -> led_point_t (#12864)

This commit is contained in:
Ryan
2021-05-13 09:17:18 +10:00
committed by GitHub
parent 07800e82c9
commit 92fbadeb1b
4 changed files with 12 additions and 12 deletions

View File

@ -26,9 +26,9 @@
#include <lib/lib8tion/lib8tion.h>
#ifndef RGB_MATRIX_CENTER
const point_t k_rgb_matrix_center = {112, 32};
const led_point_t k_rgb_matrix_center = {112, 32};
#else
const point_t k_rgb_matrix_center = RGB_MATRIX_CENTER;
const led_point_t k_rgb_matrix_center = RGB_MATRIX_CENTER;
#endif
__attribute__((weak)) RGB rgb_matrix_hsv_to_rgb(HSV hsv) { return hsv_to_rgb(hsv); }