diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2004-12-19 10:50:18 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2004-12-19 10:50:18 +0000 |
commit | f8cc6464d6a45f32e5979dfcc80b03163e345a70 (patch) | |
tree | 8877d14cecedc09d8850dda9c557bc70c6e8f498 /src | |
parent | 88ffb6204d36bcac06790f38fd303995b7ed3afb (diff) | |
download | xine-lib-f8cc6464d6a45f32e5979dfcc80b03163e345a70.tar.gz xine-lib-f8cc6464d6a45f32e5979dfcc80b03163e345a70.tar.bz2 |
add missing break, thanks to Sander Jansen.
CVS patchset: 7278
CVS date: 2004/12/19 10:50:18
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/xine_interface.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xine-engine/xine_interface.c b/src/xine-engine/xine_interface.c index 5c11c065a..932c98b46 100644 --- a/src/xine-engine/xine_interface.c +++ b/src/xine-engine/xine_interface.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_interface.c,v 1.84 2004/10/26 20:10:24 miguelfreitas Exp $ + * $Id: xine_interface.c,v 1.85 2004/12/19 10:50:18 f1rmb Exp $ * * convenience/abstraction layer, functions to implement * libxine's public interface @@ -430,7 +430,8 @@ void xine_set_param (xine_stream_t *stream, int param, int value) { case XINE_PARAM_VERBOSITY: stream->xine->verbosity = value; - + break; + case XINE_PARAM_VO_HUE: case XINE_PARAM_VO_SATURATION: case XINE_PARAM_VO_CONTRAST: |