diff options
Diffstat (limited to 'src/dfreq~.c')
-rw-r--r-- | src/dfreq~.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dfreq~.c b/src/dfreq~.c index 70b1ce5..09ebfa6 100644 --- a/src/dfreq~.c +++ b/src/dfreq~.c @@ -91,7 +91,7 @@ static void *dfreq_new(void) return (x); } -static void helper(void) +static void dfreq_tilde_helper(void) { post("\n%c dfreq~\t :: pitch-detector that counts zero-crossings", HEARTSYMBOL); post("\noutputs a frequency estimate as a stream~ that will be updated every zero-X"); @@ -106,7 +106,7 @@ void dfreq_tilde_setup(void) class_addmethod(dfreq_class, nullfn, gensym("signal"), 0); class_addmethod(dfreq_class, (t_method)dfreq_dsp, gensym("dsp"), 0); - class_addmethod(dfreq_class, (t_method)helper, gensym("help"), 0); + class_addmethod(dfreq_class, (t_method)dfreq_tilde_helper, gensym("help"), 0); class_sethelpsymbol(dfreq_class, gensym("zexy/dfreq~")); zexy_register("dfreq~"); } |