From 33f465d9a787698ba42749b273f58327b40a59d3 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 31 Jul 2014 22:54:57 +0200 Subject: player: don't ignore first chapter It's a mystery why this was done this way. If the first chapter starts later than the current position, we do have to return -1. --- player/playloop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player/playloop.c b/player/playloop.c index b1d3efeecf..564b4e739c 100644 --- a/player/playloop.c +++ b/player/playloop.c @@ -432,7 +432,7 @@ int get_current_chapter(struct MPContext *mpctx) return -2; double current_pts = get_current_time(mpctx); int i; - for (i = 1; i < mpctx->num_chapters; i++) + for (i = 0; i < mpctx->num_chapters; i++) if (current_pts < mpctx->chapters[i].start) break; return MPMAX(mpctx->last_chapter_seek, i - 1); -- cgit v1.2.3