1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Miika Pekkarinen 2005-11-21 11:31:15 +00:00
parent d1704f6894
commit 4394cc787e

View file

@ -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;
}