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:
parent
6626462908
commit
3a2be25b9b
1 changed files with 3 additions and 2 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue