From 1b852d5176ecad4f3ec829c57b54364ef7fcb6f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Prin=C4=8Di=C4=8D?= Date: Thu, 9 Apr 2020 13:11:06 +0200 Subject: [PATCH] small fix to tix --- ark_d.scd | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ark_d.scd b/ark_d.scd index 07cec11..496cbf7 100644 --- a/ark_d.scd +++ b/ark_d.scd @@ -63,9 +63,7 @@ SynthDef(\sinPulz, { arg gate = 1, freq, out=0, amp = 1, attackTime=0.01, releaseTime=1, oscDetune=0.05, cutoff=1; var snd, env; - oscDetune = oscDetune * 0.1; - oscDetune = oscDetune+1; - + oscDetune = oscDetune * 0.1 + 1; env = Linen.kr(gate, attackTime:attackTime, releaseTime:releaseTime, doneAction:2);