summaryrefslogtreecommitdiff
path: root/apps/playlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist.c')
-rw-r--r--apps/playlist.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index 373d2d534a..5f2062faeb 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -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 = &current_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)
{