1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-28 02:30:05 +00:00

Fixed a bug in AudioPluginDemo

This commit is contained in:
Tom Poole 2018-10-11 10:47:49 +01:00
parent 6626462908
commit 3a2be25b9b

View file

@ -547,9 +547,10 @@ private:
synth.renderNextBlock (buffer, midiMessages, 0, numSamples);
// Apply our delay effect to the new output..
applyDelay (buffer, delayBuffer, gainParamValue);
applyDelay (buffer, delayBuffer, delayParamValue);
applyGain (buffer, delayBuffer, delayParamValue); // apply our gain-change to the outgoing data..
// Apply our gain change to the outgoing data..
applyGain (buffer, delayBuffer, gainParamValue);
// Now ask the host for the current time so we can store it to be displayed later...
updateCurrentTimeInfoFromHost();