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 --- henon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'henon.c') diff --git a/henon.c b/henon.c index 533d850..d730e1c 100644 --- a/henon.c +++ b/henon.c @@ -75,8 +75,8 @@ static void calc(henon_struct *henon, double *vars) { static void calculate(henon_struct *henon) { calc(henon, henon -> vars); - outlet_float(henon -> x_obj.ob_outlet, henon -> vars[M_x]); outlet_float(henon -> outlets[M_y - 1], henon -> vars[M_y]); + outlet_float(henon -> x_obj.ob_outlet, henon -> vars[M_x]); } // end calculate static void reset(henon_struct *henon, t_symbol *s, int argc, t_atom *argv) { -- cgit v1.2.1