From c2a6b33ed5c7686421c66fa90fe18e1d7a14b7ec Mon Sep 17 00:00:00 2001 From: "N.N." Date: Wed, 4 Jun 2003 11:50:15 +0000 Subject: mtr read/write, etc. svn path=/trunk/externals/miXed/; revision=682 --- cyclone/hammer/bangbang.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cyclone/hammer/bangbang.c') diff --git a/cyclone/hammer/bangbang.c b/cyclone/hammer/bangbang.c index bebd26e..695a558 100644 --- a/cyclone/hammer/bangbang.c +++ b/cyclone/hammer/bangbang.c @@ -8,9 +8,9 @@ #include "m_pd.h" #include "common/loud.h" -#define BANGBANG_MINOUTS 1 -#define BANGBANG_MAXOUTS 40 /* CHECKED (just clipped without warning) */ -#define BANGBANG_DEFOUTS 2 +#define BANGBANG_MINOUTS 1 +#define BANGBANG_C74MAXOUTS 40 /* CHECKED (just clipped without warning) */ +#define BANGBANG_DEFOUTS 2 typedef struct _bangbang { @@ -46,8 +46,8 @@ static void *bangbang_new(t_floatarg val) t_outlet **outs; if (nouts < BANGBANG_MINOUTS) nouts = BANGBANG_DEFOUTS; - if (nouts > BANGBANG_MAXOUTS) - loud_incompatible_max(bangbang_class, BANGBANG_MAXOUTS, "outlets"); + if (nouts > BANGBANG_C74MAXOUTS) + loud_incompatible_max(bangbang_class, BANGBANG_C74MAXOUTS, "outlets"); if (nouts > BANGBANG_DEFOUTS) { if (!(outs = (t_outlet **)getbytes(nouts * sizeof(*outs)))) -- cgit v1.2.1