From 73146871639d8a92d24d0ec5db01f6e5729b12f1 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 17 Jan 2013 23:33:42 +0000 Subject: fix bug where outlet order was reversed, bug report and patch from Mike McGonagle svn path=/trunk/externals/chaos/; revision=16908 --- threeply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'threeply.c') 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) { -- cgit v1.2.1