aboutsummaryrefslogtreecommitdiff
path: root/source/harmgen~.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/harmgen~.c')
-rw-r--r--source/harmgen~.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/harmgen~.c b/source/harmgen~.c
index 2ab4851..aea31e1 100644
--- a/source/harmgen~.c
+++ b/source/harmgen~.c
@@ -11,7 +11,7 @@
#endif
#define HARMONICS 11
-// ------------------------ sp.harmgen~ -----------------------------
+// ------------------------ harmgen~ -----------------------------
// harmonic generator
// code from swh_plugins by steve harris www.plugins.org.uk
@@ -154,7 +154,7 @@ static void harmgen_tilde_dsp(t_harmgen_tilde *x, t_signal **sp)
void harmgen_tilde_setup(void)
{
- harmgen_tilde_class = class_new(gensym("sp.harmgen~"), (t_newmethod)harmgen_tilde_new, 0,
+ harmgen_tilde_class = class_new(gensym("harmgen~"), (t_newmethod)harmgen_tilde_new, 0,
sizeof(t_harmgen_tilde), 0, A_GIMME, 0);
CLASS_MAINSIGNALIN(harmgen_tilde_class, t_harmgen_tilde, x_f);
class_addmethod(harmgen_tilde_class, (t_method)harmgen_tilde_dsp, gensym("dsp"), 0);