Explorar el Código

Merge remote-tracking branch 'origin/master' into develop

QMK Bot hace 2 años
padre
commit
59a3098139
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      docs/features/rgb_matrix.md

+ 2 - 2
docs/features/rgb_matrix.md

@@ -1007,9 +1007,9 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
     HSV hsv = {0, 255, 255};
 
     if (layer_state_is(layer_state, 2)) {
-        hsv = {130, 255, 255};
+        hsv = (HSV){130, 255, 255};
     } else {
-        hsv = {30, 255, 255};
+        hsv = (HSV){30, 255, 255};
     }
 
     if (hsv.v > rgb_matrix_get_val()) {