Browse Source

Fix for dumb compilers

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX 5 years ago
parent
commit
dfc8666bb5
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/CarlaPluginJack.cpp

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

@@ -1625,7 +1625,7 @@ public:
// ---------------------------------------------------------------
// setup hints and options

fSetupHints = static_cast<uchar>(label[5]) - '0';
fSetupHints = static_cast<uint>(static_cast<uchar>(label[5]) - '0');

// FIXME dryWet broken
pData->hints = PLUGIN_IS_BRIDGE | PLUGIN_OPTION_FIXED_BUFFERS;


Loading…
Cancel
Save