From 77d47b53eafc929c6932c46a6037bc1fe90f20f8 Mon Sep 17 00:00:00 2001 From: Hardeep Sidhu Date: Mon, 18 Sep 2006 04:41:50 +0000 Subject: [PATCH] Use INSERT_LAST when creating a new playlist. This fixes a problem caused by a recent change in playlist code. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10988 a1c6a512-1295-4272-9138-f99709370657 --- apps/tagtree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tagtree.c b/apps/tagtree.c index 7ef8e89d4f..c674cf4ebd 100644 --- a/apps/tagtree.c +++ b/apps/tagtree.c @@ -1181,7 +1181,7 @@ static int tagtree_play_folder(struct tree_context* c) return -1; } - if (!insert_all_playlist(c, PLAYLIST_INSERT, false)) + if (!insert_all_playlist(c, PLAYLIST_INSERT_LAST, false)) return -2; if (global_settings.playlist_shuffle)