From f10cf78bb906c8a42d0c0d9521523df8fdc99eec Mon Sep 17 00:00:00 2001 From: nick Date: Tue, 29 Jan 2002 10:07:05 +0000 Subject: [PATCH] Minor fix - else 0 is unreachable git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4407 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_xv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvo/vo_xv.c b/libvo/vo_xv.c index 67e94803c6..476cd54b5f 100644 --- a/libvo/vo_xv.c +++ b/libvo/vo_xv.c @@ -181,7 +181,7 @@ static int __xv_set_video_eq( const vidix_video_eq_t *info,int use_reset) else continue; /* means that user has untouched this parameter since NVidia driver has default == min for XV_HUE but not mid */ - if(!port_value) continue; + if(!port_value && use_reset) continue; port_min = xv_min; port_max = xv_max; port_mid = (port_min + port_max) / 2;