Skip to content

Commit

Permalink
fix to outlet syntax, now tied to local variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Wolek authored and Nathan Wolek committed May 18, 2017
1 parent 256f8ca commit 059d812
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/projects/vbap/vbap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@ void *vbap_new(double azi,double ele)
x->x_proxy = proxy_new((t_object *)x, 2, &x->x_in); // initialize proxy 2
x->x_proxy = proxy_new((t_object *)x, 1, &x->x_in); // initialize proxy 1

outlet_new(x,"float");
outlet_new(x,"float");
outlet_new(x,"float");
outlet_new(x,"float");
outlet_new(x,"list");
x->x_outlet4 = outlet_new(x,"float");
x->x_outlet3 = outlet_new(x,"float");
x->x_outlet2 = outlet_new(x,"float");
x->x_outlet1 = outlet_new(x,"float");
x->x_outlet0 = outlet_new(x,"list");

x->x_spread_base[0] = 0.0;
x->x_spread_base[1] = 1.0;
Expand Down

0 comments on commit 059d812

Please sign in to comment.