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/cycle.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cyclone/hammer/cycle.c') diff --git a/cyclone/hammer/cycle.c b/cyclone/hammer/cycle.c index faffc01..2e6dbd0 100644 --- a/cyclone/hammer/cycle.c +++ b/cyclone/hammer/cycle.c @@ -10,9 +10,9 @@ //#define CYCLE_USEEVENTNO -#define CYCLE_MINOUTS 1 -#define CYCLE_MAXOUTS 100 /* CHECKED */ -#define CYCLE_DEFOUTS 1 +#define CYCLE_MINOUTS 1 +#define CYCLE_C74MAXOUTS 100 /* CHECKED */ +#define CYCLE_DEFOUTS 1 typedef struct _cycle { @@ -117,9 +117,9 @@ static void *cycle_new(t_floatarg f1, t_floatarg f2) t_outlet **outs; if (nouts < CYCLE_MINOUTS) nouts = CYCLE_DEFOUTS; - if (nouts > CYCLE_MAXOUTS) + if (nouts > CYCLE_C74MAXOUTS) { - loud_incompatible_max(cycle_class, CYCLE_MAXOUTS, "outlets"); + loud_incompatible_max(cycle_class, CYCLE_C74MAXOUTS, "outlets"); /* CHECKED: max clips with an error: ``perhaps you were trying to make an oscillator?'' */ } -- cgit v1.2.1