player/osd.c: fix putting --start time on OSD

I missed an ab-loop check in ff7e294. It should now work as expected.
This commit is contained in:
Leo Izen 2017-12-05 17:02:10 -05:00
parent 9513165c99
commit 0433162f7f
1 changed files with 2 additions and 1 deletions

View File

@ -357,7 +357,8 @@ void set_osd_bar_chapters(struct MPContext *mpctx, int type)
double len = get_time_length(mpctx);
if (len > 0) {
double ab_loop_start_time = get_ab_loop_start_time(mpctx);
if (ab_loop_start_time != MP_NOPTS_VALUE) {
if (opts->ab_loop[0] != MP_NOPTS_VALUE ||
ab_loop_start_time != MP_NOPTS_VALUE && opts->ab_loop[1] != MP_NOPTS_VALUE) {
MP_TARRAY_APPEND(mpctx, mpctx->osd_progbar.stops,
mpctx->osd_progbar.num_stops, ab_loop_start_time / len);
}