aboutsummaryrefslogtreecommitdiff
path: root/threeply.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-17 23:33:42 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-17 23:33:42 +0000
commit73146871639d8a92d24d0ec5db01f6e5729b12f1 (patch)
tree5ecefb50248ea2245f367906b92810696dd3fdbd /threeply.c
parentf8da0ee520988ec347bbd1173106635e55f2854c (diff)
fix bug where outlet order was reversed, bug report and patch from Mike McGonagle
svn path=/trunk/externals/chaos/; revision=16908
Diffstat (limited to 'threeply.c')
-rw-r--r--threeply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/threeply.c b/threeply.c
index 6b236ff..2495c19 100644
--- a/threeply.c
+++ b/threeply.c
@@ -78,8 +78,8 @@ static void calc(threeply_struct *threeply, double *vars) {
static void calculate(threeply_struct *threeply) {
calc(threeply, threeply -> vars);
- outlet_float(threeply -> x_obj.ob_outlet, threeply -> vars[M_x]);
outlet_float(threeply -> outlets[M_y - 1], threeply -> vars[M_y]);
+ outlet_float(threeply -> x_obj.ob_outlet, threeply -> vars[M_x]);
} // end calculate
static void reset(threeply_struct *threeply, t_symbol *s, int argc, t_atom *argv) {