forked from len0rd/rockbox
Remove unused playlist_checkend(), it really should never be needed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17023 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6ff8f6ae87
commit
0840e1bf0b
2 changed files with 0 additions and 14 deletions
|
@ -2480,19 +2480,6 @@ int playlist_start(int start_index, int offset)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* Returns false if 'steps' would pass end of playlist */
|
||||
bool playlist_checkend(int steps)
|
||||
{
|
||||
struct playlist_info* playlist = ¤t_playlist;
|
||||
|
||||
int index = get_next_index(playlist, steps, -1);
|
||||
|
||||
if (index < 0 && steps >= 0 && global_settings.repeat_mode == REPEAT_SHUFFLE)
|
||||
index = get_next_index(playlist, steps, REPEAT_ALL);
|
||||
|
||||
return (index >= 0);
|
||||
}
|
||||
|
||||
/* Returns false if 'steps' is out of bounds, else true */
|
||||
bool playlist_check(int steps)
|
||||
{
|
||||
|
|
|
@ -119,7 +119,6 @@ int playlist_resume(void);
|
|||
int playlist_add(const char *filename);
|
||||
int playlist_shuffle(int random_seed, int start_index);
|
||||
int playlist_start(int start_index, int offset);
|
||||
bool playlist_checkend(int steps);
|
||||
bool playlist_check(int steps);
|
||||
char *playlist_peek(int steps);
|
||||
int playlist_next(int steps);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue