diff options
author | Martin Peach <mrpeach@users.sourceforge.net> | 2008-05-11 18:13:10 +0000 |
---|---|---|
committer | Martin Peach <mrpeach@users.sourceforge.net> | 2008-05-11 18:13:10 +0000 |
commit | f3ead73f0ce2a2ebcd5f1761feb248de7fd74249 (patch) | |
tree | 5d9e73274cae7776c6d04f26d9c1809f7fbcce5d /osc | |
parent | ed4eb4f773584538b46d208f8ad45001e3c5b526 (diff) |
Applied zmoelnig's patch (1959417) to use path as output selector instead of 'list'.
svn path=/trunk/externals/mrpeach/; revision=9784
Diffstat (limited to 'osc')
-rw-r--r-- | osc/unpackOSC.c | 4 |
1 files changed, 3 insertions, 1 deletions
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; } |