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
This commit is contained in:
Peter D'Hoye 2006-07-15 14:10:59 +00:00
parent 2076363fda
commit e5d282ba9f

View file

@ -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();
}
}