From e5d282ba9f65419f3897287cfe6bfe4d3cbfd179 Mon Sep 17 00:00:00 2001 From: Peter D'Hoye Date: Sat, 15 Jul 2006 14:10:59 +0000 Subject: Bugfix from Alistair Marshall for FS#5660. Bookmark function was not called when stopping in tree view mode. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10214 a1c6a512-1295-4272-9138-f99709370657 --- apps/tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/tree.c b/apps/tree.c index ea13ddfedb..d991905d10 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -643,10 +643,10 @@ static bool dirbrowse(void) { /* Stop the music if it is playing */ if(audio_status()) { - if (!global_settings.party_mode) - { + if (!global_settings.party_mode) { if (global_settings.fade_on_stop) fade(0); + bookmark_autobookmark(); audio_stop(); } } -- cgit v1.2.3