From 3ee042f236c4a88b088ac063c701e57ca625001a Mon Sep 17 00:00:00 2001 From: zvecr Date: Thu, 27 Oct 2022 11:22:08 +0100 Subject: [PATCH] set_rgb_matrix_config shouldnt touch eeprom --- quantum/xap/xap_handlers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/xap/xap_handlers.c b/quantum/xap/xap_handlers.c index 6937e83b527..a16dbe34c5d 100644 --- a/quantum/xap/xap_handlers.c +++ b/quantum/xap/xap_handlers.c @@ -338,7 +338,7 @@ bool xap_respond_set_rgb_matrix_config(xap_token_t token, const void *data, size rgb_matrix_mode_noeeprom(mode); rgb_matrix_sethsv_noeeprom(arg->hue, arg->sat, arg->val); rgb_matrix_set_speed_noeeprom(arg->speed); - rgb_matrix_set_flags(arg->flags); + rgb_matrix_set_flags_noeeprom(arg->flags); xap_respond_success(token); return true;