diff --git a/source/utils/CarlaLv2Utils.hpp b/source/utils/CarlaLv2Utils.hpp index 7625e1470..aa9e6e1f9 100644 --- a/source/utils/CarlaLv2Utils.hpp +++ b/source/utils/CarlaLv2Utils.hpp @@ -972,9 +972,6 @@ public: handleParameterValueChanged(i, curValue); } - if (frames == 0) - return false; - // init event out data if (fPorts.numMidiOuts > 0 || fPorts.hasUI) { @@ -995,6 +992,9 @@ public: } } + if (frames == 0) + return false; + return true; }