aboutsummaryrefslogtreecommitdiffstats
path: root/.config/SuperCollider
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2019-03-03 17:02:25 +0100
committerDavid Runge <dave@sleepmap.de>2019-03-03 17:02:25 +0100
commitf3ee15d598cbdabd9fc0b55b9f4fc99dd7af30e9 (patch)
tree519b5f285f51ea40dde6f9757b70769a14049924 /.config/SuperCollider
parent3d4e8438d0b0ca637ae62b0bf9d870841c8cfda1 (diff)
downloaddotfiles-f3ee15d598cbdabd9fc0b55b9f4fc99dd7af30e9.tar.gz
dotfiles-f3ee15d598cbdabd9fc0b55b9f4fc99dd7af30e9.tar.bz2
dotfiles-f3ee15d598cbdabd9fc0b55b9f4fc99dd7af30e9.tar.xz
dotfiles-f3ee15d598cbdabd9fc0b55b9f4fc99dd7af30e9.zip
.config/SuperCollider/synthdefs.scd: Being more clear in the description.
Diffstat (limited to '.config/SuperCollider')
-rw-r--r--.config/SuperCollider/synthdefs.scd4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/SuperCollider/synthdefs.scd b/.config/SuperCollider/synthdefs.scd
index 4a75b4c..51d320d 100644
--- a/.config/SuperCollider/synthdefs.scd
+++ b/.config/SuperCollider/synthdefs.scd
@@ -1,6 +1,6 @@
postln("Adding custom SynthDefs");
-// route 8 Ins to Out
+// route 8 Ins to 8 Outs
SynthDef(\route8BussesToOut, {
arg in=0,
volume=#[0,0,0,0,0,0,0,0],
@@ -25,7 +25,7 @@ SynthDef(\filter8Rumble, {
);
}).add;
-// Mix down SoundIns to one
+// Mix down SoundIns to one Out
SynthDef(\mix4BussesToOut, {
arg in=#[0,1,2,3],
volume=#[0,0,0,0],