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.
This commit is contained in:
wm4 2014-07-31 22:54:57 +02:00
parent de8e9ca9d2
commit 33f465d9a7
1 changed files with 1 additions and 1 deletions

View File

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