diff options
| author | Hardeep Sidhu <dyp@pobox.com> | 2006-09-19 19:30:22 +0000 |
|---|---|---|
| committer | Hardeep Sidhu <dyp@pobox.com> | 2006-09-19 19:30:22 +0000 |
| commit | 202b65f8f075c525931f9e735e5b463f6a38be82 (patch) | |
| tree | 4cfaf8144281c8b227a6932aadc15f54c85474aa | |
| parent | 7f1346d641b3d9ec26bc0e1d252b332443443cfa (diff) | |
| download | rockbox-202b65f8f075c525931f9e735e5b463f6a38be82.zip rockbox-202b65f8f075c525931f9e735e5b463f6a38be82.tar.gz rockbox-202b65f8f075c525931f9e735e5b463f6a38be82.tar.bz2 rockbox-202b65f8f075c525931f9e735e5b463f6a38be82.tar.xz | |
Use INSERT_LAST when creating a new playlist. Fixes B#6028.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11004 a1c6a512-1295-4272-9138-f99709370657
| -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 7aa74d3..4fd9d41 100644 --- a/apps/onplay.c +++ b/apps/onplay.c @@ -370,7 +370,7 @@ static bool playlist_options(void) (selected_file_attr & ATTR_DIRECTORY)) { items[i].desc = ID2P(LANG_INSERT); - args[i].position = PLAYLIST_INSERT; + args[i].position = PLAYLIST_INSERT_LAST; args[i].queue = false; i++; |