summaryrefslogtreecommitdiff
path: root/keyboards/mxss
diff options
context:
space:
mode:
authorWilba <wilba@wilba.tech>2022-08-10 13:01:09 +1000
committerGitHub <noreply@github.com>2022-08-09 20:01:09 -0700
commit8a24fbbdaea4f3ff9bdcdf76036bedca6e335bce (patch)
tree022f2696570a1b564daa36d8bed3df22cf960307 /keyboards/mxss
parent7019d0bce890ca97937d62e843adcdc9b9a0d1fd (diff)
Fix detection of EEPROM reset in some keyboards (#17970)
Diffstat (limited to 'keyboards/mxss')
-rw-r--r--keyboards/mxss/mxss_frontled.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/mxss/mxss_frontled.c b/keyboards/mxss/mxss_frontled.c
index f5e4613dfb..8bb93d5fd8 100644
--- a/keyboards/mxss/mxss_frontled.c
+++ b/keyboards/mxss/mxss_frontled.c
@@ -39,9 +39,9 @@ __attribute__ ((weak))
size_t lc_size = sizeof(layer_colors) / sizeof(hs_set);
void fled_init(void) {
- // If EEPROM config exists, load it
- // If VIA EEPROM exists, FLED config should too
- if (via_eeprom_is_valid()) {
+ // This checks both an EEPROM reset (from bootmagic lite, keycodes)
+ // and also firmware build date (from via_eeprom_is_valid())
+ if (eeconfig_is_enabled()) {
fled_load_conf();
// Else, default config
} else {