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

olafmatt shoutcast~: add A_CANT to dsp method

parent 7ddf8e27
No related branches found
No related tags found
No related merge requests found
......@@ -1281,7 +1281,7 @@ void shoutcast_tilde_setup(void)
CLASS_MAINSIGNALIN(shoutcast_class, t_shoutcast, x_f );
class_addfloat(shoutcast_class, (t_method)shoutcast_float);
class_addmethod(shoutcast_class, (t_method)shoutcast_disconnect, gensym("disconnect"), 0);
class_addmethod(shoutcast_class, (t_method)shoutcast_dsp, gensym("dsp"), 0);
class_addmethod(shoutcast_class, (t_method)shoutcast_dsp, gensym("dsp"), A_CANT, 0);
class_addmethod(shoutcast_class, (t_method)shoutcast_connect, gensym("connect"), A_GIMME, 0);
class_addmethod(shoutcast_class, (t_method)shoutcast_print, gensym("print"), 0);
class_addmethod(shoutcast_class, (t_method)shoutcast_printlame, gensym("printlame"), 0);
......@@ -1296,4 +1296,4 @@ void shoutcast_tilde_setup(void)
class_addmethod(shoutcast_class, (t_method)shoutcast_bcurl, gensym("url"), A_GIMME, 0);
class_addmethod(shoutcast_class, (t_method)shoutcast_bcpublic, gensym("public"), A_FLOAT, 0);
class_sethelpsymbol(shoutcast_class, gensym("help-shoutcast~.pd"));
}
\ No newline at end of file
}
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