Fix right side ws2812 leds having two indices (#15985)

* Fix right side leds having two indices

* remove redundant left check
This commit is contained in:
Dasky 2022-02-11 20:13:22 +00:00 committed by GitHub
parent 7148a69d5e
commit 00cc64638c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -349,10 +349,15 @@ static void flush(void) {
static inline void setled(int i, uint8_t r, uint8_t g, uint8_t b) {
# if defined(RGB_MATRIX_ENABLE) && defined(RGB_MATRIX_SPLIT)
const uint8_t k_rgb_matrix_split[2] = RGB_MATRIX_SPLIT;
if (!is_keyboard_left() && (i >= k_rgb_matrix_split[0])) {
i -= k_rgb_matrix_split[0];
} else if (is_keyboard_left() && (i >= k_rgb_matrix_split[0]))
if (!is_keyboard_left()) {
if (i >= k_rgb_matrix_split[0]) {
i -= k_rgb_matrix_split[0];
} else {
return;
}
} else if (i >= k_rgb_matrix_split[0]) {
return;
}
# endif
rgb_matrix_ws2812_array[i].r = r;