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

vst: add A_CANT to dsp method

parent faa16c3d
No related branches found
No related tags found
No related merge requests found
......@@ -303,7 +303,7 @@ static const char * findFilePath( const char * path , const char * dllname )
vst_tilde_class = class_new(gensym("vst~"), (t_newmethod) vst_tilde_new, (t_method) vst_tilde_free,
sizeof(t_vst_tilde), 0, A_GIMME , 0);
CLASS_MAINSIGNALIN( vst_tilde_class, t_vst_tilde, x_f);
class_addmethod(vst_tilde_class, (t_method) vst_tilde_dsp, gensym("dsp"), (t_atomtype)0);
class_addmethod(vst_tilde_class, (t_method) vst_tilde_dsp, gensym("dsp"), A_CANT, (t_atomtype)0);
class_addmethod (vst_tilde_class,(t_method)vst_tilde_control,gensym ("control"),A_DEFSYM, A_DEFFLOAT, 0);
class_addmethod (vst_tilde_class,(t_method)vst_tilde_pitchbend,gensym ("pitchbend"),A_DEFFLOAT, 0);
class_addmethod (vst_tilde_class,(t_method)vst_tilde_program,gensym ("program"),A_DEFFLOAT, 0);
......@@ -576,4 +576,4 @@ static void vst_tilde_midinote(t_vst_tilde* x , t_float note )
#if defined(_LANGUAGE_C_PLUS_PLUS) || defined(__cplusplus)
}
#endif
\ No newline at end of file
#endif
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