From b6fd82e05ec9b195af6e1031994a411b76bd03dd Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 17 Jan 2006 16:30:01 +0000 Subject: removed the 'sp.' prefix for Pd-extended builds since its unecessary with the namespace svn path=/trunk/externals/sigpack/; revision=4443 --- source/ustep~.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/ustep~.c') diff --git a/source/ustep~.c b/source/ustep~.c index d91ea1f..b7ea923 100644 --- a/source/ustep~.c +++ b/source/ustep~.c @@ -9,7 +9,7 @@ #pragma warning( disable : 4305 ) #endif -/* ------------------------ sp.ustep~ ----------------------------- */ +/* ------------------------ ustep~ ----------------------------- */ /* signal unity step function */ static t_class *ustep_tilde_class; @@ -76,7 +76,7 @@ static void ustep_tilde_dsp(t_ustep_tilde *x, t_signal **sp) void ustep_tilde_setup(void) { - ustep_tilde_class = class_new(gensym("sp.ustep~"), (t_newmethod)ustep_tilde_new, 0, + ustep_tilde_class = class_new(gensym("ustep~"), (t_newmethod)ustep_tilde_new, 0, sizeof(t_ustep_tilde), 0, A_DEFFLOAT, A_DEFFLOAT, 0); CLASS_MAINSIGNALIN(ustep_tilde_class, t_ustep_tilde, x_f); class_addmethod(ustep_tilde_class, (t_method)ustep_tilde_dsp, gensym("dsp"), 0); -- cgit v1.2.1