From d18f0ffcf6cac260e15cc927e188225b304a00ae Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Mon, 20 Dec 2004 21:38:24 +0000 Subject: reverse the order plugins with equal priorities are handled so that plugins appearing earlier in the plugin path actually override later plugins; also check the priority of video_out plugins on loading for symmetry to the audio_out loading CVS patchset: 7289 CVS date: 2004/12/20 21:38:24 --- src/xine-utils/list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/xine-utils') diff --git a/src/xine-utils/list.c b/src/xine-utils/list.c index 15f646d96..bd44a6abf 100644 --- a/src/xine-utils/list.c +++ b/src/xine-utils/list.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: list.c,v 1.8 2004/04/16 16:34:23 hadess Exp $ + * $Id: list.c,v 1.9 2004/12/20 21:38:24 mroi Exp $ * */ #ifdef HAVE_CONFIG_H @@ -151,7 +151,7 @@ void xine_list_append_priority_content (xine_list_t *l, void *content, int prior cur = l->first; while(1) { - if( priority >= cur->priority ) { + if( priority > cur->priority ) { node->next = cur; node->prev = cur->prev; -- cgit v1.2.3