1
0
Fork 0

[CI] Format code according to conventions (#12650)

Co-authored-by: QMK Bot <hello@qmk.fm>
This commit is contained in:
github-actions[bot] 2021-04-22 19:26:17 +10:00 committed by GitHub
parent d6ab908272
commit 15ff1927db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 19 deletions

View file

@ -142,11 +142,11 @@ void led_matrix_set_value(int index, uint8_t value) {
# endif
else if (is_keyboard_left() && index < k_led_matrix_split[0])
#endif
# ifdef USE_CIE1931_CURVE
#ifdef USE_CIE1931_CURVE
led_matrix_driver.set_value(index, pgm_read_byte(&CIE1931_CURVE[value]));
# else
led_matrix_driver.set_value(index, value);
# endif
#else
led_matrix_driver.set_value(index, value);
#endif
}
void led_matrix_set_value_all(uint8_t value) {