diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2006-08-10 09:50:45 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2006-08-10 09:50:45 +0000 |
| commit | 887cfeb9f55344db5c8df1f22d5c6a02467764f3 (patch) | |
| tree | e7efd8bc2bc4eabd365fccd0d7787f1bf633fda1 /apps/onplay.c | |
| parent | 19fe37de6fb63c8d6a8891e095f8b1fde18514eb (diff) | |
| download | rockbox-887cfeb9f55344db5c8df1f22d5c6a02467764f3.zip rockbox-887cfeb9f55344db5c8df1f22d5c6a02467764f3.tar.gz rockbox-887cfeb9f55344db5c8df1f22d5c6a02467764f3.tar.bz2 rockbox-887cfeb9f55344db5c8df1f22d5c6a02467764f3.tar.xz | |
Only sync playlist once when adding bunch of files from tagcache.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10508 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/onplay.c')
| -rw-r--r-- | apps/onplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/onplay.c b/apps/onplay.c index 4558da7..a5fb3fe 100644 --- a/apps/onplay.c +++ b/apps/onplay.c @@ -182,7 +182,7 @@ static bool add_to_playlist(int position, bool queue) else { if ((selected_file_attr & TREE_ATTR_MASK) == TREE_ATTR_MPA) - playlist_insert_track(NULL, selected_file, position, queue); + playlist_insert_track(NULL, selected_file, position, queue, true); else if (selected_file_attr & ATTR_DIRECTORY) { bool recurse = false; |