Skip to content
Snippets Groups Projects
Commit 9c6198c4 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

tof: add A_CANT to dsp method

parent 2cb935f3
No related branches found
No related tags found
No related merge requests found
......@@ -379,7 +379,7 @@ void breakpoints_tilde_setup(void)
CLASS_MAINSIGNALIN(breakpoints_class, t_breakpoints, x_f);
/* here we tell Pd about the "dsp" method, which is called back
when DSP is turned on. */
class_addmethod(breakpoints_class, (t_method)breakpointssig_dsp, gensym("dsp"), 0);
class_addmethod(breakpoints_class, (t_method)breakpointssig_dsp, gensym("dsp"), A_CANT, 0);
//class_addcreator((t_newmethod)breakpoints_new,gensym("breakpoints~"),A_GIMME,0);
......
......@@ -238,7 +238,7 @@ void common_tilde_setup(void) {
0, A_DEFSYM, 0);
class_addmethod(common_tilde_class,
(t_method)common_tilde_dsp, gensym("dsp"), 0);
(t_method)common_tilde_dsp, gensym("dsp"), A_CANT, 0);
class_addmethod(common_tilde_class,
(t_method)common_tilde_set, gensym("set"), A_SYMBOL, 0);
......
......@@ -145,7 +145,7 @@ static void *crossfade_tilde_new(t_floatarg f)
CLASS_MAINSIGNALIN(crossfade_tilde_class, t_crossfade_tilde, f);
class_addmethod(crossfade_tilde_class,
(t_method)crossfade_tilde_dsp, gensym("dsp"), 0);
(t_method)crossfade_tilde_dsp, gensym("dsp"), A_CANT, 0);
// class_addmethod(crossfade_tilde_class, nullfn, gensym("signal"), 0);
}
......@@ -203,7 +203,7 @@ void phasorshot_free(t_phasorshot *x)
phasorshot_class = class_new(gensym("phasorshot~"), (t_newmethod)phasorshot_new, (t_method)phasorshot_free,
sizeof(t_phasorshot), 0,A_GIMME,0);
CLASS_MAINSIGNALIN(phasorshot_class, t_phasorshot, x_f);
class_addmethod(phasorshot_class, (t_method)phasorshot_dsp, gensym("dsp"), 0);
class_addmethod(phasorshot_class, (t_method)phasorshot_dsp, gensym("dsp"), A_CANT, 0);
class_addmethod(phasorshot_class, (t_method)phasorshot_ft1,
gensym("ft1"), A_FLOAT, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment