diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/playlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index be831c4..ceb38a4 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -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; |