# HG changeset patch # User nick # Date 1012298825 0 # Node ID d8e5237af111231112755a7ef6f45ae24bd0792f # Parent 7eda15bbb3f93aeb91c1e35c4ae072edba2ad81d Minor fix - else 0 is unreachable diff -r 7eda15bbb3f9 -r d8e5237af111 libvo/vo_xv.c --- a/libvo/vo_xv.c Tue Jan 29 09:57:21 2002 +0000 +++ b/libvo/vo_xv.c Tue Jan 29 10:07:05 2002 +0000 @@ -181,7 +181,7 @@ 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;