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

mmonoplayer: add A_CANT to dsp method

parent 1f871fb9
No related branches found
No related tags found
No related merge requests found
...@@ -122,7 +122,7 @@ void atari_2600_tilde_setup(void) ...@@ -122,7 +122,7 @@ void atari_2600_tilde_setup(void)
{ {
atari_2600_class = class_new(gensym("atari_2600~"), atari_2600_class = class_new(gensym("atari_2600~"),
(t_newmethod)atari_2600_new, 0, sizeof(t_atari_2600), CLASS_DEFAULT, A_DEFFLOAT, 0); (t_newmethod)atari_2600_new, 0, sizeof(t_atari_2600), CLASS_DEFAULT, A_DEFFLOAT, 0);
class_addmethod(atari_2600_class, (t_method)atari_2600_dsp, gensym("dsp"), 0); class_addmethod(atari_2600_class, (t_method)atari_2600_dsp, gensym("dsp"), A_CANT, 0);
} }
void *atari_2600_new(void) void *atari_2600_new(void)
......
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