Browse Source

Fix previous commit, ensure pool sizes are the same

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.1-rc2
falkTX 4 years ago
parent
commit
9558263d4d
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/backend/plugin/CarlaPluginInternal.cpp

+ 1
- 1
source/backend/plugin/CarlaPluginInternal.cpp View File

@@ -581,7 +581,7 @@ void CarlaPlugin::ProtectedData::Latency::recreateBuffers(const uint32_t newChan

CarlaPlugin::ProtectedData::PostRtEvents::PostRtEvents() noexcept
: dataPool(128, 128),
dataPoolRT(256, 256),
dataPoolRT(128, 128),
data(dataPool),
dataPendingRT(dataPoolRT),
dataMutex(),


Loading…
Cancel
Save