summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index 365668f755..7dd45902fe 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1485,7 +1485,7 @@ static int mp_property_audio_delay(m_option_t* prop,int action,void* arg) {
else {
float delay = audio_delay;
m_property_delay(prop,action,arg,&audio_delay);
- if(sh_audio) sh_audio->delay += audio_delay-delay;
+ if(sh_audio) sh_audio->delay -= audio_delay-delay;
}
return 1;
default: