From 5fb8c47ff706b0df164de7b46ea1e4846a5dbf2f Mon Sep 17 00:00:00 2001 From: Franz Zotter Date: Wed, 9 Aug 2006 19:26:19 +0000 Subject: forgot to check in corrections: mtx_fill didn't work correctly, a condition was wrong. mtx_find didn't check each entry because of a wrong loop condition. svn path=/trunk/externals/iem/iemmatrix/; revision=5540 --- src/mtx_fill.c | 2 +- src/mtx_find.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/mtx_fill.c b/src/mtx_fill.c index 84a022e..90fc7aa 100644 --- a/src/mtx_fill.c +++ b/src/mtx_fill.c @@ -296,7 +296,7 @@ static void mTXFillMatrix (MTXfill *mtx_fill_obj, t_symbol *s, } break; case FILL_INDEXED_ELEMENTS: - if (list_size > mtx_fill_obj->index_size) { + if (list_size < mtx_fill_obj->index_size) { post("mtx_fill: fill matrix smaller than indexing vector"); return; } diff --git a/src/mtx_find.c b/src/mtx_find.c index 8ff2796..b3fe0fe 100644 --- a/src/mtx_find.c +++ b/src/mtx_find.c @@ -134,7 +134,7 @@ static int findPreviousNonZero (const int n, t_atom *x, int offset) static int findPreviousNonZeroStep (const int step, t_atom *x, int offset) { x += offset; - for (; offset > 0; offset-=step, x-=step) + for (; offset >= 0; offset-=step, x-=step) if (atom_getfloat(x)) return offset; return -1; -- cgit v1.2.1