diff options
Diffstat (limited to 'src/mtx_not.c')
-rw-r--r-- | src/mtx_not.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mtx_not.c b/src/mtx_not.c index e73307a..1f04209 100644 --- a/src/mtx_not.c +++ b/src/mtx_not.c @@ -46,14 +46,13 @@ static void mtx_not_list(t_mtx_binscalar *x, t_symbol *s, int argc, t_atom *argv { int n=argc; t_atom *m; - t_float factor = x->f; adjustsize(&x->m, 1, argc); m = x->m.atombuffer; while(n--){ - m->a_type = A_FLOAT; t_float f = atom_getfloat(argv++); + m->a_type = A_FLOAT; (m++)->a_w.w_float = (t_float)(f<MTX_ALMOSTZERO&&f>-MTX_ALMOSTZERO); } |