summaryrefslogtreecommitdiff
path: root/apps/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/misc.c')
-rw-r--r--apps/misc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/misc.c b/apps/misc.c
index 02d8bed2d8..9559b0c44f 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -620,6 +620,8 @@ bool settings_parseline(char* line, char** name, char** value)
620 620
621static void system_flush(void) 621static void system_flush(void)
622{ 622{
623 scrobbler_shutdown();
624 playlist_shutdown();
623 tree_flush(); 625 tree_flush();
624 call_storage_idle_notifys(true); /*doesnt work on usb and shutdown from ata thread */ 626 call_storage_idle_notifys(true); /*doesnt work on usb and shutdown from ata thread */
625} 627}
@@ -627,6 +629,7 @@ static void system_flush(void)
627static void system_restore(void) 629static void system_restore(void)
628{ 630{
629 tree_restore(); 631 tree_restore();
632 scrobbler_init();
630} 633}
631 634
632static bool clean_shutdown(void (*callback)(void *), void *parameter) 635static bool clean_shutdown(void (*callback)(void *), void *parameter)
@@ -915,7 +918,6 @@ long default_event_handler_ex(long event, void (*callback)(void *), void *parame
915 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED)) 918 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED))
916#endif 919#endif
917 { 920 {
918 scrobbler_flush_cache();
919 system_flush(); 921 system_flush();
920#ifdef BOOTFILE 922#ifdef BOOTFILE
921#if !defined(USB_NONE) && !defined(USB_IPODSTYLE) 923#if !defined(USB_NONE) && !defined(USB_IPODSTYLE)