-Commented JACK track creation

main
Harry van Haaren 2013-11-26 17:19:33 +00:00
parent 5b7f6e13ac
commit 46d9700c62
1 changed files with 4 additions and 0 deletions

View File

@ -167,6 +167,10 @@ Jack::Jack( std::string name ) :
for(int i = 0; i < NTRACKS; i++)
{
/** Setup the tracks:
* The TrackOutput gets a pointer to the next AudioProcessor to call:
* In this case, the track's Looper instance.
**/
loopers.push_back( new Looper(i) );
trackOutputs.push_back( new TrackOutput(i, loopers.back() ) );