mirror of https://github.com/zmkfirmware/zmk.git
refactor(underglow): fix uninitialized variable warning
This commit is contained in:
parent
7d5aa0c0bf
commit
849eca7228
|
|
@ -82,7 +82,7 @@ static struct zmk_led_hsb hsb_scale_zero_max(struct zmk_led_hsb hsb) {
|
|||
}
|
||||
|
||||
static struct led_rgb hsb_to_rgb(struct zmk_led_hsb hsb) {
|
||||
float r, g, b;
|
||||
float r = 0, g = 0, b = 0;
|
||||
|
||||
uint8_t i = hsb.h / 60;
|
||||
float v = hsb.b / ((float)BRT_MAX);
|
||||
|
|
|
|||
Loading…
Reference in New Issue