Skip to content

Commit

Permalink
renaming vars
Browse files Browse the repository at this point in the history
  • Loading branch information
vlazzarini committed Dec 22, 2017
1 parent 42747e3 commit eae832c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Bela/BelaCsound.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ bool setup(BelaContext *context, void *Data)

/* set up the channels */
for(int i=0; i < ANCHNS; i++) {
gCsData.channel[i].data.resize(csound->GetKsmps());
gCsData.channel[i].samples.resize(csound->GetKsmps());
gCsData.channel[i].name << "analogIn" << i;
gCsData.ochannel[i].data.resize(csound->GetKsmps());
gCsData.ochannel[i].samples.resize(csound->GetKsmps());
gCsData.ochannel[i].name << "analogOut" << i;
}

Expand Down

0 comments on commit eae832c

Please sign in to comment.