Fix up after merge

This commit is contained in:
zvecr 2023-03-23 00:46:25 +00:00
parent e92968d813
commit 5eed80c66b
2 changed files with 1 additions and 5 deletions

View File

@ -32,7 +32,7 @@ bool xap_respond_set_audio_config(xap_token_t token, const void *data, size_t le
}
bool xap_respond_save_audio_config(xap_token_t token, const void *data, size_t length) {
eeconfig_update_audio(audio_config.raw);
eeconfig_update_audio_current();
return xap_respond_success(token);
}

View File

@ -60,10 +60,6 @@ extern rgblight_config_t rgblight_config;
uint8_t rgblight2xap(uint8_t val);
uint8_t xap2rgblight(uint8_t val);
void rgblight_enabled_noeeprom(bool val) {
val ? rgblight_enable_noeeprom() : rgblight_disable_noeeprom();
}
bool xap_respond_get_rgblight_config(xap_token_t token, const void *data, size_t length) {
xap_route_lighting_rgblight_get_config_t ret;