diff options
| author | Drashna Jaelre <drashna@live.com> | 2020-07-13 15:28:42 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-13 23:28:42 +0100 |
| commit | 584d38b5f55304871bfac1eac3c8c8125d374529 (patch) | |
| tree | 5732e82b22dc27c9bf61709318160b08918911d6 | |
| parent | 9307762d76f4b36b788daea003e07bd53af5baad (diff) | |
| download | qmk_firmware-584d38b5f55304871bfac1eac3c8c8125d374529.tar.gz qmk_firmware-584d38b5f55304871bfac1eac3c8c8125d374529.zip | |
Fix RGB Matrix using RGBW WS2812 LEDs (#9705)
This should be a pointer, as that is what the function expects.
| -rw-r--r-- | quantum/rgb_matrix_drivers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/rgb_matrix_drivers.c b/quantum/rgb_matrix_drivers.c index 37bc20ef5..6084d5685 100644 --- a/quantum/rgb_matrix_drivers.c +++ b/quantum/rgb_matrix_drivers.c | |||
| @@ -128,7 +128,7 @@ static inline void setled(int i, uint8_t r, uint8_t g, uint8_t b) { | |||
| 128 | rgb_matrix_ws2812_array[i].g = g; | 128 | rgb_matrix_ws2812_array[i].g = g; |
| 129 | rgb_matrix_ws2812_array[i].b = b; | 129 | rgb_matrix_ws2812_array[i].b = b; |
| 130 | # ifdef RGBW | 130 | # ifdef RGBW |
| 131 | convert_rgb_to_rgbw(rgb_matrix_ws2812_array[i]); | 131 | convert_rgb_to_rgbw(&rgb_matrix_ws2812_array[i]); |
| 132 | # endif | 132 | # endif |
| 133 | } | 133 | } |
| 134 | 134 | ||
