summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lfo.ck7
1 files changed, 2 insertions, 5 deletions
diff --git a/lfo.ck b/lfo.ck
index 1a64444..173f366 100644
--- a/lfo.ck
+++ b/lfo.ck
@@ -1,9 +1,7 @@
/*
* Configurable LFOs
*/
-[new SinOsc $ UGen,
- new PulseOsc $ UGen,
- new SampOsc $ UGen] @=> UGen @lfo[];
+[new SinOsc, new PulseOsc, new SampOsc] @=> UGen @lfo[];
/* BUG WORKAROUND: setting lfo[2].gain crashes */
10 => (lfo[2] $ SampOsc).gain; /* preamp, to get value range 0 to 1000 */
@@ -17,8 +15,7 @@ for (0 => int i; i < lfo.cap(); i++)
0 => int cur_lfo;
-[new SawOsc $ UGen,
- new PulseOsc $ UGen] @=> UGen @osc[];
+[new SawOsc, new PulseOsc] @=> UGen @osc[];
0 => int cur_osc;