Browse Source

Fix carla-lv2 pre-run with 0 frames

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.5.6
falkTX 1 year ago
parent
commit
a434c46061
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      source/utils/CarlaLv2Utils.hpp

+ 3
- 3
source/utils/CarlaLv2Utils.hpp View File

@@ -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;
}



Loading…
Cancel
Save