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, 4 insertions, 2 deletions
diff --git a/apps/main.c b/apps/main.c
index dd41559328..e05bd7bdfa 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(); 340 settings_apply(false);
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,6 +376,7 @@ 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);
379 settings_apply_skins(); 380 settings_apply_skins();
380} 381}
381 382
@@ -570,7 +571,7 @@ static void init(void)
570#endif 571#endif
571 } 572 }
572 573
573 settings_apply(); 574 settings_apply(false);
574 init_dircache(false); 575 init_dircache(false);
575#ifdef HAVE_TAGCACHE 576#ifdef HAVE_TAGCACHE
576 init_tagcache(); 577 init_tagcache();
@@ -635,6 +636,7 @@ static void init(void)
635#ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN 636#ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
636 check_bootfile(false); /* remember write time and filesize */ 637 check_bootfile(false); /* remember write time and filesize */
637#endif 638#endif
639 settings_apply(true);
638 settings_apply_skins(); 640 settings_apply_skins();
639} 641}
640 642