summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/main.c b/apps/main.c
index 7f44d89a6a..7333f7dc8d 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -420,7 +420,8 @@ static void init(void)
420 global_settings.superbass); 420 global_settings.superbass);
421#endif /* CONFIG_CODEC != SWCODEC */ 421#endif /* CONFIG_CODEC != SWCODEC */
422 422
423 scrobbler_init(); 423 if (global_settings.audioscrobbler)
424 scrobbler_init();
424 425
425 audio_init(); 426 audio_init();
426 427
@@ -700,7 +701,10 @@ static void init(void)
700 playlist_init(); 701 playlist_init();
701 tree_mem_init(); 702 tree_mem_init();
702 filetype_init(); 703 filetype_init();
703 scrobbler_init(); 704
705 if (global_settings.audioscrobbler)
706 scrobbler_init();
707
704 shortcuts_init(); 708 shortcuts_init();
705 709
706#if CONFIG_CODEC != SWCODEC 710#if CONFIG_CODEC != SWCODEC