diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-05-05 13:53:34 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-05-05 13:53:34 +0000 |
commit | 5a70260a872d00f062c296e135a26a907ca76a87 (patch) | |
tree | 0a44315e609915da575ab714e899542d4883806e | |
parent | af3cc16ed5bfccb88458c74e055047a92288a9d3 (diff) |
2nd outlet outputs the total number of objects in the parent canvas
svn path=/trunk/externals/iem/iemguts/; revision=9762
-rw-r--r-- | src/canvasindex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/canvasindex.c b/src/canvasindex.c index e352d02..8092351 100644 --- a/src/canvasindex.c +++ b/src/canvasindex.c @@ -52,7 +52,7 @@ static void canvasindex_bang(t_canvasindex *x) // index=glist_getindex(c0, c); // index=glist_getindex(c0, (t_gobj*)c); - outlet_float(x->xoutlet, (t_float)(glist_getindex(c0, 0))); + outlet_float(x->youtlet, (t_float)(glist_getindex(c0, 0))); outlet_float(x->xoutlet, (t_float)(glist_getindex(c0, (t_gobj*)c))); } |