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

miXed: add A_CANT to dsp method

parent 82800ecb
No related branches found
No related tags found
No related merge requests found
...@@ -217,6 +217,6 @@ void arsic_setup(t_class *c, void *dspfn, void *floatfn) ...@@ -217,6 +217,6 @@ void arsic_setup(t_class *c, void *dspfn, void *floatfn)
} }
else CLASS_MAINSIGNALIN(c, t_sic, s_f); else CLASS_MAINSIGNALIN(c, t_sic, s_f);
} }
class_addmethod(c, (t_method)dspfn, gensym("dsp"), 0); class_addmethod(c, (t_method)dspfn, gensym("dsp"), A_CANT, 0);
class_addmethod(c, (t_method)arsic_enable, gensym("enable"), 0); class_addmethod(c, (t_method)arsic_enable, gensym("enable"), 0);
} }
...@@ -116,6 +116,6 @@ void sic_setup(t_class *c, void *dspfn, void *floatfn) ...@@ -116,6 +116,6 @@ void sic_setup(t_class *c, void *dspfn, void *floatfn)
} }
else CLASS_MAINSIGNALIN(c, t_sic, s_f); else CLASS_MAINSIGNALIN(c, t_sic, s_f);
} }
class_addmethod(c, (t_method)dspfn, gensym("dsp"), 0); class_addmethod(c, (t_method)dspfn, gensym("dsp"), A_CANT, 0);
class_addmethod(c, (t_method)sic_enable, gensym("enable"), 0); class_addmethod(c, (t_method)sic_enable, gensym("enable"), 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