Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nerrons
purr-data
Commits
0773278b
Commit
0773278b
authored
Sep 04, 2015
by
Jonathan Wilkes
Browse files
mrpeach op~: add A_CANT to dsp method
parent
ce5a5f6c
Changes
1
Hide whitespace changes
Inline
Side-by-side
externals/mrpeach/op~/op~.c
View file @
0773278b
...
...
@@ -228,7 +228,7 @@ void op_tilde_setup(void)
{
op_tilde_class
=
class_new
(
gensym
(
"op~"
),
(
t_newmethod
)
op_tilde_new
,
0
,
sizeof
(
t_op_tilde
),
0
,
A_GIMME
,
0
);
class_addmethod
(
op_tilde_class
,
(
t_method
)
op_tilde_dsp
,
gensym
(
"dsp"
),
0
);
class_addmethod
(
op_tilde_class
,
(
t_method
)
op_tilde_dsp
,
gensym
(
"dsp"
),
A_CANT
,
0
);
class_addmethod
(
op_tilde_class
,
(
t_method
)
op_tilde_help
,
gensym
(
"help"
),
0
);
class_addmethod
(
op_tilde_class
,
(
t_method
)
op_tilde_op
,
gensym
(
"op"
),
A_DEFSYMBOL
,
0
);
CLASS_MAINSIGNALIN
(
op_tilde_class
,
t_op_tilde
,
x_f
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment