diff options
Diffstat (limited to 'quantum/led_matrix.c')
| -rw-r--r-- | quantum/led_matrix.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/quantum/led_matrix.c b/quantum/led_matrix.c index 890573022..72eb5190b 100644 --- a/quantum/led_matrix.c +++ b/quantum/led_matrix.c | |||
| @@ -142,11 +142,11 @@ void led_matrix_set_value(int index, uint8_t value) { | |||
| 142 | # endif | 142 | # endif |
| 143 | else if (is_keyboard_left() && index < k_led_matrix_split[0]) | 143 | else if (is_keyboard_left() && index < k_led_matrix_split[0]) |
| 144 | #endif | 144 | #endif |
| 145 | # ifdef USE_CIE1931_CURVE | 145 | #ifdef USE_CIE1931_CURVE |
| 146 | led_matrix_driver.set_value(index, pgm_read_byte(&CIE1931_CURVE[value])); | 146 | led_matrix_driver.set_value(index, pgm_read_byte(&CIE1931_CURVE[value])); |
| 147 | # else | 147 | #else |
| 148 | led_matrix_driver.set_value(index, value); | 148 | led_matrix_driver.set_value(index, value); |
| 149 | # endif | 149 | #endif |
| 150 | } | 150 | } |
| 151 | 151 | ||
| 152 | void led_matrix_set_value_all(uint8_t value) { | 152 | void led_matrix_set_value_all(uint8_t value) { |
