We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a9b1c1 commit 24719feCopy full SHA for 24719fe
.gitignore
@@ -1 +1,2 @@
1
/BJumblr.lv2/**
2
+.tags
src/BJumblr.cpp
@@ -428,7 +428,7 @@ void BJumblr::run (uint32_t n_samples)
428
size_t acount = (maxBufferSize + audioBufferCounter - audioBufferSize + (i * audioBufferSize) / WAVEFORMSIZE) % maxBufferSize;
429
waveform[wcount] = (audioBuffer1[acount] + (audioBuffer2[acount])) / 2;
430
}
431
- notifyWaveformToGui ((waveformCounter + 1) % WAVEFORMSIZE, waveformCounter);
+ if (ui_on) notifyWaveformToGui ((waveformCounter + 1) % WAVEFORMSIZE, waveformCounter);
432
433
434
0 commit comments