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

markex: add A_CANT to dsp method

parent ac839712
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,6 @@ void abs_tilde_setup(void) ...@@ -47,6 +47,6 @@ void abs_tilde_setup(void)
abs_class = class_new(gensym("abs~"), (t_newmethod)abs_new, 0, abs_class = class_new(gensym("abs~"), (t_newmethod)abs_new, 0,
sizeof(t_abs), 0, A_NULL); sizeof(t_abs), 0, A_NULL);
class_addmethod(abs_class, (t_method)nullfn, &s_signal, A_NULL); class_addmethod(abs_class, (t_method)nullfn, &s_signal, A_NULL);
class_addmethod(abs_class, (t_method)abs_dsp, gensym("dsp"), A_NULL); class_addmethod(abs_class, (t_method)abs_dsp, gensym("dsp"), A_CANT, A_NULL);
} }
...@@ -151,6 +151,6 @@ void reson_tilde_setup(void) ...@@ -151,6 +151,6 @@ void reson_tilde_setup(void)
class_addfloat(sigreson_class, (t_method)sigreson_float); class_addfloat(sigreson_class, (t_method)sigreson_float);
class_addmethod(sigreson_class, (t_method)sigreson_ft1, gensym("ft1"), A_FLOAT, 0); class_addmethod(sigreson_class, (t_method)sigreson_ft1, gensym("ft1"), A_FLOAT, 0);
class_addmethod(sigreson_class, (t_method)nullfn, &s_signal, A_NULL); class_addmethod(sigreson_class, (t_method)nullfn, &s_signal, A_NULL);
class_addmethod(sigreson_class, (t_method)sigreson_dsp, gensym("dsp"), A_NULL); class_addmethod(sigreson_class, (t_method)sigreson_dsp, gensym("dsp"), A_CANT, A_NULL);
} }
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