diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-01-17 16:30:01 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-01-17 16:30:01 +0000 |
commit | b6fd82e05ec9b195af6e1031994a411b76bd03dd (patch) | |
tree | 22c8ecff7007b7dc778a75d832cd6d25ad45c0a6 /source/rectify~.c | |
parent | 3b026703323546aa0342040643fb0cbd4e032f38 (diff) |
removed the 'sp.' prefix for Pd-extended builds since its unecessary with the namespace
svn path=/trunk/externals/sigpack/; revision=4443
Diffstat (limited to 'source/rectify~.c')
-rw-r--r-- | source/rectify~.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/rectify~.c b/source/rectify~.c index d2dda88..4e5c3eb 100644 --- a/source/rectify~.c +++ b/source/rectify~.c @@ -9,7 +9,7 @@ #pragma warning( disable : 4305 )
#endif
-/* ------------------------ sp.rectify~ ----------------------------- */
+/* ------------------------ rectify~ ----------------------------- */
/* flips negative signal values to positive */
static t_class *rectify_tilde_class;
@@ -54,7 +54,7 @@ static void rectify_tilde_dsp(t_rectify_tilde *x, t_signal **sp) void rectify_tilde_setup(void)
{
- rectify_tilde_class = class_new(gensym("sp.rectify~"), (t_newmethod)rectify_tilde_new, 0,
+ rectify_tilde_class = class_new(gensym("rectify~"), (t_newmethod)rectify_tilde_new, 0,
sizeof(t_rectify_tilde), 0, A_DEFFLOAT, 0);
CLASS_MAINSIGNALIN(rectify_tilde_class, t_rectify_tilde, x_f);
class_addmethod(rectify_tilde_class, (t_method)rectify_tilde_dsp, gensym("dsp"), 0);
|