From f3ead73f0ce2a2ebcd5f1761feb248de7fd74249 Mon Sep 17 00:00:00 2001 From: Martin Peach Date: Sun, 11 May 2008 18:13:10 +0000 Subject: Applied zmoelnig's patch (1959417) to use path as output selector instead of 'list'. svn path=/trunk/externals/mrpeach/; revision=9784 --- osc/unpackOSC.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/osc/unpackOSC.c b/osc/unpackOSC.c index 7c1a6d7..3ca6d74 100644 --- a/osc/unpackOSC.c +++ b/osc/unpackOSC.c @@ -285,7 +285,9 @@ static void unpackOSC_list(t_unpackOSC *x, t_symbol *s, int argc, t_atom *argv) x->x_data_atc = unpackOSC_path(x, messageName); if (x->x_data_atc == 1) unpackOSC_Smessage(x, (void *)args, x->x_raw_c-messageLen); } - if (x->x_data_atc >= 1) outlet_list(x->x_data_out, &s_list, x->x_data_atc, x->x_data_at); + /*if (x->x_data_atc >= 1) outlet_list(x->x_data_out, &s_list, x->x_data_atc, x->x_data_at);*/ + if (x->x_data_atc >= 1) + outlet_anything(x->x_data_out, atom_getsymbol(x->x_data_at), x->x_data_atc-1, x->x_data_at+1); x->x_data_atc = 0; } -- cgit v1.2.1