diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-01 21:48:04 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-01 21:48:04 +0200 |
commit | ce7743d3bc4cdd3586b7918948fcdc08d21e0ab0 (patch) | |
tree | 9c81db0b6cd017763ca1f3e2b901095aeb4dcd99 | |
parent | 67f12c2a798b8e1113ab0fac6642a8c09fdd6142 (diff) | |
download | digitale-debutanten-ce7743d3bc4cdd3586b7918948fcdc08d21e0ab0.tar.gz |
minor fix
-rw-r--r-- | rec.ck | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,8 +15,8 @@ WvOut2 out => blackhole; "recording" => out.autoPrefix; filename => out.wavFilename; -dac.chan(0) => out.left(); -dac.chan(1) => out.right(); +dac.chan(0) => out.left; +dac.chan(1) => out.right; /* keep recording as long as shred is running */ null @=> out; /* BUG WORKAROUND: dereference "out" on shred exit */ |