~ruther/qmk_firmware

584d38b5f55304871bfac1eac3c8c8125d374529 — Drashna Jaelre 5 years ago 9307762
Fix RGB Matrix using RGBW WS2812 LEDs (#9705)

This should be a pointer, as that is what the function expects.
1 files changed, 1 insertions(+), 1 deletions(-)

M quantum/rgb_matrix_drivers.c
M quantum/rgb_matrix_drivers.c => quantum/rgb_matrix_drivers.c +1 -1
@@ 128,7 128,7 @@ static inline void setled(int i, uint8_t r, uint8_t g, uint8_t b) {
    rgb_matrix_ws2812_array[i].g = g;
    rgb_matrix_ws2812_array[i].b = b;
#    ifdef RGBW
    convert_rgb_to_rgbw(rgb_matrix_ws2812_array[i]);
    convert_rgb_to_rgbw(&rgb_matrix_ws2812_array[i]);
#    endif
}