Switching rgb_config_t to use HSV struct (qmk#5933)

This commit is contained in:
Ryan Caltabiano
2019-05-19 23:12:29 -05:00
committed by Florian Didron
parent fd2246f972
commit 92d137cec9
39 changed files with 122 additions and 114 deletions

View File

@@ -3,8 +3,9 @@
RGB_MATRIX_EFFECT(SOLID_REACTIVE_SIMPLE)
#ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
static void SOLID_REACTIVE_SIMPLE_math(HSV* hsv, uint16_t offset) {
hsv->v = scale8(255 - offset, rgb_matrix_config.val);
static HSV SOLID_REACTIVE_SIMPLE_math(HSV hsv, uint16_t offset) {
hsv.v = scale8(255 - offset, hsv.v);
return hsv;
}
bool SOLID_REACTIVE_SIMPLE(effect_params_t* params) {