From c10b148c202a50ea546997fec0e9b1432774d4e0 Mon Sep 17 00:00:00 2001 From: Cyrille Henry Date: Sat, 19 Feb 2011 15:49:52 +0000 Subject: few updates, but still somes small incompatibilities with msd* svn path=/trunk/externals/pmpd/; revision=14930 --- pmpd2d.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pmpd2d.c') diff --git a/pmpd2d.c b/pmpd2d.c index 0a281f7..f10d410 100644 --- a/pmpd2d.c +++ b/pmpd2d.c @@ -1681,7 +1681,7 @@ void pmpd2d_massesPosMean(t_pmpd2d *x, t_symbol *s, int argc, t_atom *argv) somme = 0; j = 0; - if ( argv[0].a_type == A_SYMBOL ) + if ( (argc >= 1) & (argv[0].a_type == A_SYMBOL) ) { for (i=0; i< x->nb_mass; i++) { @@ -1731,7 +1731,7 @@ void pmpd2d_massesPosStd(t_pmpd2d *x, t_symbol *s, int argc, t_atom *argv) std = 0; j = 0; - if ( argv[0].a_type == A_SYMBOL ) + if ( (argc >= 1) & (argv[0].a_type == A_SYMBOL) ) { for (i=0; i< x->nb_mass; i++) { -- cgit v1.2.1