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
ec4803b7
Commit
ec4803b7
authored
Nov 07, 2016
by
Jonathan Wilkes
Browse files
use logical "and" instead of multiply for clarity
parent
04b30a91
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/src/x_connective.c
View file @
ec4803b7
...
...
@@ -489,7 +489,7 @@ static void *select_new(t_symbol *s, int argc, t_atom *argv)
s
=
1
;
}
}
x
->
x_mixed
=
f
*
s
;
x
->
x_mixed
=
f
&&
s
;
x
->
x_rejectout
=
outlet_new
(
&
x
->
x_obj
,
&
s_float
);
return
(
x
);
}
...
...
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