diff options
author | William Wilgus <wilgus.william@gmail.com> | 2022-06-20 20:16:55 -0400 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2022-06-20 20:16:55 -0400 |
commit | 6cdd142d5c841eedb6a900cd50ee5f526f933eec (patch) | |
tree | 6e86d3e7841feea31dd042ec4564499d1c642032 | |
parent | ed37c2e8948960b45c9bac58f1ffb678fdf31f5d (diff) | |
download | rockbox-6cdd142d5c.tar.gz rockbox-6cdd142d5c.zip |
Setting reset fix red
Change-Id: I9174d7695b117fa10d10cda8ff9cccc50ebeb7f2
-rw-r--r-- | apps/main.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/apps/main.c b/apps/main.c index d52c17a67e..515a9978f5 100644 --- a/apps/main.c +++ b/apps/main.c @@ -579,14 +579,11 @@ static void init(void) if ((button_status() & SETTINGS_RESET) == SETTINGS_RESET) #else /* Reset settings if the hold button is turned on */ - if (button_hold()) + if (global_settings.clear_settings_on_hold && button_hold()) #endif { - if (global_settings.clear_settings_on_hold) - { - splash(HZ*2, str(LANG_RESET_DONE_CLEAR)); - settings_reset(); - } + splash(HZ*2, str(LANG_RESET_DONE_CLEAR)); + settings_reset(); } #endif |