summaryrefslogtreecommitdiff
path: root/apps/misc.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-11-17 07:34:00 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-11-17 07:34:00 +0000
commitee1c231779c2e75c2d267e88ef859209a7c93d9c (patch)
tree2dadc9eed7e52ce184510b104da818ffbe81774a /apps/misc.c
parentaeb60e20a30bc53e1fc9bfe605cce167f6fb55b4 (diff)
downloadrockbox-ee1c231779c2e75c2d267e88ef859209a7c93d9c.tar.gz
rockbox-ee1c231779c2e75c2d267e88ef859209a7c93d9c.zip
move the scrobbler and playlist shutdown/restart calls out of tree.c and move them into the regular usb/shutdown handlers.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19124 a1c6a512-1295-4272-9138-f99709370657
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)