summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2005-11-21 11:31:15 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2005-11-21 11:31:15 +0000
commit4394cc787e2a83dd8da92f9ab0e6cb25ee188e54 (patch)
tree47b9889c805d98cfed02e433a9e1e650ab5b79dc /apps
parentd1704f689462393012715f6d0cd6ae0b153becf8 (diff)
downloadrockbox-4394cc787e2a83dd8da92f9ab0e6cb25ee188e54.zip
rockbox-4394cc787e2a83dd8da92f9ab0e6cb25ee188e54.tar.gz
rockbox-4394cc787e2a83dd8da92f9ab0e6cb25ee188e54.tar.bz2
rockbox-4394cc787e2a83dd8da92f9ab0e6cb25ee188e54.tar.xz
The previous commit didn't fully fix the problem. Now it should have
been fixed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8022 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/playlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index 9a132e0..f842f22 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -943,7 +943,7 @@ static int calculate_step_count(const struct playlist_info *playlist, int steps)
i++;
index += direction;
- } while (i < count);
+ } while (i <= count);
return steps;
}