summaryrefslogtreecommitdiff
path: root/synth/jack.cpp
diff options
context:
space:
mode:
authorFlorian Jung <flo@thinkpad.(none)>2011-02-04 16:20:12 +0100
committerFlorian Jung <flo@thinkpad.(none)>2011-02-04 16:20:12 +0100
commit6ea25018546ebc099845158de7fef29c1c4fb28d (patch)
tree8e99e35949f462b5fea95411a77757e46117f096 /synth/jack.cpp
parent12f20783b7ec8804825282fd04d9333ec83e31eb (diff)
Tiny bugfix in in-synth-cli, updated TODO and stuff
Diffstat (limited to 'synth/jack.cpp')
-rw-r--r--synth/jack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/synth/jack.cpp b/synth/jack.cpp
index 79c7b4a..c86cbce 100644
--- a/synth/jack.cpp
+++ b/synth/jack.cpp
@@ -459,7 +459,7 @@ int process_callback(jack_nframes_t nframes, void *notused)
#endif // if the above changes, (1) must also change
#ifdef FRAMESKIP
- for (size_t k=i+frameskip-1;k>i;k--)
+ for (size_t k=i+frameskip-1;k>i;--k)
{
outbuf[j][k]=outbuf[j][i];
#ifdef STEREO