player: show restart position

Signed-off-by: Aman Gupta <aman@tmm1.net>
This commit is contained in:
Aman Gupta 2019-03-24 08:25:09 -07:00 committed by sfan5
parent fcb320fd3f
commit 9c22bd4898
1 changed files with 1 additions and 1 deletions

View File

@ -1060,7 +1060,7 @@ static void handle_playback_restart(struct MPContext *mpctx)
mpctx->playing_msg_shown = true; mpctx->playing_msg_shown = true;
mp_wakeup_core(mpctx); mp_wakeup_core(mpctx);
mpctx->ab_loop_clip = mpctx->playback_pts < opts->ab_loop[1]; mpctx->ab_loop_clip = mpctx->playback_pts < opts->ab_loop[1];
MP_VERBOSE(mpctx, "playback restart complete\n"); MP_VERBOSE(mpctx, "playback restart complete @ %f\n", mpctx->playback_pts);
} }
} }