Skip to content

Commit

Permalink
[Bug] Use correct functions for RGB Matrix support in VIA (#19554)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored Jan 10, 2023
1 parent caca029 commit 90fd08b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quantum/via.c
Original file line number Diff line number Diff line change
Expand Up @@ -704,11 +704,11 @@ void via_qmk_rgb_matrix_set_value(uint8_t *data) {
break;
}
case id_qmk_rgb_matrix_effect_speed: {
rgblight_set_speed_noeeprom(value_data[0]);
rgb_matrix_set_speed_noeeprom(value_data[0]);
break;
}
case id_qmk_rgb_matrix_color: {
rgblight_sethsv_noeeprom(value_data[0], value_data[1], rgb_matrix_get_val());
rgb_matrix_sethsv_noeeprom(value_data[0], value_data[1], rgb_matrix_get_val());
break;
}
}
Expand Down

0 comments on commit 90fd08b

Please sign in to comment.