small fix to tix

chaos_201207
Luka Prinčič 2020-04-09 13:11:06 +02:00
parent 698823b4ad
commit 1b852d5176
1 changed files with 1 additions and 3 deletions

View File

@ -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);