diff options
author | David Runge <david.runge@frqrec.com> | 2014-02-19 14:56:57 +0100 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2014-02-19 14:56:57 +0100 |
commit | 54f18c52b0d20ad74b1b4b49999e5be4f8656291 (patch) | |
tree | 0c4926209258812fabe0531dd04bd0755ddde81e | |
parent | c20bd2ec6bc651baf0f7b96de0eca5efdaaf5213 (diff) | |
download | dotfiles-54f18c52b0d20ad74b1b4b49999e5be4f8656291.tar.gz dotfiles-54f18c52b0d20ad74b1b4b49999e5be4f8656291.tar.bz2 dotfiles-54f18c52b0d20ad74b1b4b49999e5be4f8656291.tar.xz dotfiles-54f18c52b0d20ad74b1b4b49999e5be4f8656291.zip |
Changing from 4 to 2 channels by default (because of new laptop)
-rw-r--r-- | .config/SuperCollider/startupfiles/startupSystem.scd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/SuperCollider/startupfiles/startupSystem.scd b/.config/SuperCollider/startupfiles/startupSystem.scd index 474c732..51c4009 100644 --- a/.config/SuperCollider/startupfiles/startupSystem.scd +++ b/.config/SuperCollider/startupfiles/startupSystem.scd @@ -2,7 +2,8 @@ load("/home/dave/.config/SuperCollider/startupfiles/shared.scd"); "Starting with internal system settings.".postln; Server.local.options.sampleRate = 48000.0; Server.local.options.blockSize = 128; -Server.local.options.numOutputBusChannels = 4; +//Server.local.options.numOutputBusChannels = 4; +Server.local.options.numOutputBusChannels = 2; Server.local.options.numInputBusChannels = 2; Server.local.options.maxNodes = 65536; Server.local.options.memSize = 2097152; // 1048576 |