diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-04 03:59:34 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-04 03:59:34 +0200 |
commit | fbba3f68ac26ea75a4a9118ec97545573e3a95d2 (patch) | |
tree | 4effbb2ebe532d5a19d05757bb6f8a996fe9110d | |
parent | ed62bc75750c39ffac346a95ce00e9c715096ddc (diff) | |
download | digitale-debutanten-fbba3f68ac26ea75a4a9118ec97545573e3a95d2.tar.gz |
fixed live sampler: LiSa has now 8 output channels (a completely undocumented feature)
-rw-r--r-- | live_sampler.ck | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/live_sampler.ck b/live_sampler.ck index 5dae578..67096f5 100644 --- a/live_sampler.ck +++ b/live_sampler.ck @@ -20,7 +20,8 @@ for (0 => int i; i < lisa.cap(); i++) { 0 => lisa[i].loop; /* patch */ - Bus.channels[0] => lisa[i] => amp; + Bus.channels[0] => lisa[i]; + lisa[i].chan(0) => amp; } lisa[0] @=> LiSaX @currentSample; |