aboutsummaryrefslogtreecommitdiff
path: root/group.c
diff options
context:
space:
mode:
Diffstat (limited to 'group.c')
-rw-r--r--group.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/group.c b/group.c
index f4de2d8..79283cb 100644
--- a/group.c
+++ b/group.c
@@ -42,8 +42,6 @@
static char *version = "$Revision: 1.3 $";
-t_int group_instance_count;
-
#define DEBUG(x)
//#define DEBUG(x) x
@@ -213,13 +211,6 @@ static void *group_new(t_symbol *s, int argc, t_atom *argv)
t_group *x = (t_group *)pd_new(group_class);
- if(!group_instance_count)
- {
- post("[group] %s",version);
- post("\twritten by Hans-Christoph Steiner <hans@eds.org>");
- post("\tcompiled on "__DATE__" at "__TIME__ " ");
- }
- group_instance_count++;
floatinlet_new(&x->x_obj, &x->x_gid);
x->x_data_outlet = outlet_new(&x->x_obj, 0);
@@ -260,6 +251,9 @@ void group_setup(void)
gensym("set"),
A_GIMME,
0);
+ verbose(0, "[group] %s",version);
+ verbose(0, "\twritten by Hans-Christoph Steiner <hans@eds.org>");
+ verbose(0, "\tcompiled on "__DATE__" at "__TIME__ " ");
}
#endif /* NOT _WIN32 */