summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index 39d89788e7..c8f9746634 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -2039,7 +2039,7 @@ if(!sh_video) {
//
// convert time to HH:MM:SS.F format
//
- long tenths = 10 * sh_audio->delay-audio_out->get_delay();
+ long tenths = 10 * (sh_audio->delay-audio_out->get_delay()*playback_speed);
int hh = (tenths / 36000) % 100;
int mm = (tenths / 600) % 60;
int ss = (tenths / 10) % 60;