Don't delete queued tracks in repeat one mode.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3929 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7a38db572e
commit
b3621b7e1c
1 changed files with 1 additions and 1 deletions
|
@ -1662,7 +1662,7 @@ int playlist_next(int steps)
|
|||
{
|
||||
int index;
|
||||
|
||||
if (steps > 0)
|
||||
if (steps > 0 && global_settings.repeat_mode != REPEAT_ONE)
|
||||
{
|
||||
int i, j;
|
||||
|
||||
|
|
Loading…
Reference in a new issue