summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHardeep Sidhu <dyp@pobox.com>2006-09-18 04:41:50 +0000
committerHardeep Sidhu <dyp@pobox.com>2006-09-18 04:41:50 +0000
commit77d47b53eafc929c6932c46a6037bc1fe90f20f8 (patch)
treeb96aaaa2a33c3b007f97fc9ccf0a122ff0072791
parent3408b60136445b8d1d6355fa560a665658056a80 (diff)
downloadrockbox-77d47b53eafc929c6932c46a6037bc1fe90f20f8.tar.gz
rockbox-77d47b53eafc929c6932c46a6037bc1fe90f20f8.zip
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
-rw-r--r--apps/tagtree.c2
1 files changed, 1 insertions, 1 deletions
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)
1181 return -1; 1181 return -1;
1182 } 1182 }
1183 1183
1184 if (!insert_all_playlist(c, PLAYLIST_INSERT, false)) 1184 if (!insert_all_playlist(c, PLAYLIST_INSERT_LAST, false))
1185 return -2; 1185 return -2;
1186 1186
1187 if (global_settings.playlist_shuffle) 1187 if (global_settings.playlist_shuffle)