summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/main.c b/apps/main.c
index e05bd7bdfa..fa1500edd5 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -337,7 +337,7 @@ static void init(void)
337 storage_init(); 337 storage_init();
338 settings_reset(); 338 settings_reset();
339 settings_load(SETTINGS_ALL); 339 settings_load(SETTINGS_ALL);
340 settings_apply(false); 340 settings_apply(true);
341 init_dircache(true); 341 init_dircache(true);
342 init_dircache(false); 342 init_dircache(false);
343#ifdef HAVE_TAGCACHE 343#ifdef HAVE_TAGCACHE
@@ -376,7 +376,6 @@ static void init(void)
376 audio_init(); 376 audio_init();
377 button_clear_queue(); /* Empty the keyboard buffer */ 377 button_clear_queue(); /* Empty the keyboard buffer */
378 378
379 settings_apply(true);
380 settings_apply_skins(); 379 settings_apply_skins();
381} 380}
382 381
@@ -571,7 +570,7 @@ static void init(void)
571#endif 570#endif
572 } 571 }
573 572
574 settings_apply(false); 573 settings_apply(true);
575 init_dircache(false); 574 init_dircache(false);
576#ifdef HAVE_TAGCACHE 575#ifdef HAVE_TAGCACHE
577 init_tagcache(); 576 init_tagcache();
@@ -636,7 +635,6 @@ static void init(void)
636#ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN 635#ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
637 check_bootfile(false); /* remember write time and filesize */ 636 check_bootfile(false); /* remember write time and filesize */
638#endif 637#endif
639 settings_apply(true);
640 settings_apply_skins(); 638 settings_apply_skins();
641} 639}
642 640