mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-10 22:19:29 +00:00
Format code according to conventions (#12088)
Co-authored-by: QMK Bot <hello@qmk.fm>
This commit is contained in:
parent
cde2859a65
commit
d950b97115
3 changed files with 16 additions and 17 deletions
|
@ -198,8 +198,7 @@ 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) {
|
||||
#if defined(RGB_MATRIX_ENABLE) && defined(RGB_MATRIX_SPLIT)
|
||||
for (uint8_t i = 0; i < DRIVER_LED_TOTAL; i++)
|
||||
rgb_matrix_set_color(i, red, green, blue);
|
||||
for (uint8_t i = 0; i < DRIVER_LED_TOTAL; i++) rgb_matrix_set_color(i, red, green, blue);
|
||||
#else
|
||||
rgb_matrix_driver.set_color_all(red, green, blue);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue