1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-28 10:33:20 +00:00

Minor fix - else 0 is unreachable

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4407 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nick 2002-01-29 10:07:05 +00:00
parent a9be09b587
commit f10cf78bb9

View File

@ -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;