summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--quantum/via.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/via.c b/quantum/via.c
index 12ef6c6b2f..8cb6eb5fc6 100644
--- a/quantum/via.c
+++ b/quantum/via.c
@@ -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;
}
}