Skip to content

Commit

Permalink
Fix automation consistency between standalone and plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Dec 8, 2024
1 parent 9ebb3ad commit e582f79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/PluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -755,11 +755,11 @@ void PluginProcessor::processConstant(dsp::AudioBlock<float> buffer)
}
setThis();

// Process audio
performDSP(audioVectorIn.data(), audioVectorOut.data());
sendParameters();

sendMessagesFromQueue();

// Process audio
performDSP(audioVectorIn.data(), audioVectorOut.data());

if (connectionListener && plugdata_debugging_enabled())
connectionListener.load()->updateSignalData();
Expand Down

0 comments on commit e582f79

Please sign in to comment.