1
0
Fork 0

Switching rgb_config_t to use HSV struct

This commit is contained in:
Ryan Caltabiano 2019-05-19 23:12:29 -05:00 committed by Drashna Jaelre
parent e717dcaa09
commit cf215487ba
42 changed files with 126 additions and 118 deletions

View file

@ -135,7 +135,7 @@ void rgb_matrix_indicators_user(void)
break;
case _FNC: {
HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, rgb_matrix_config.val };
HSV hsv = { rgb_matrix_config.hsv.h, rgb_matrix_config.hsv.s, rgb_matrix_config.hsv.v };
HSV hui = hsv;
HSV hud = hsv;
HSV sai = hsv;