Browse Source

Try to fix old gcc build

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX 4 years ago
parent
commit
566c35a3a5
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      source/backend/engine/CarlaEngineGraph.cpp

+ 2
- 1
source/backend/engine/CarlaEngineGraph.cpp View File

@@ -322,7 +322,8 @@ void ExternalGraph::setGroupPos(const bool sendHost, const bool sendOSC,
{ {
CARLA_SAFE_ASSERT_UINT_RETURN(groupId >= kExternalGraphGroupCarla && groupId < kExternalGraphGroupMax, groupId,); CARLA_SAFE_ASSERT_UINT_RETURN(groupId >= kExternalGraphGroupCarla && groupId < kExternalGraphGroupMax, groupId,);


positions[groupId] = { true, x1, y1, x2, y2 };
const PatchbayPosition ppos = { true, x1, y1, x2, y2 };
positions[groupId] = ppos;


kEngine->callback(sendHost, sendOSC, kEngine->callback(sendHost, sendOSC,
ENGINE_CALLBACK_PATCHBAY_CLIENT_POSITION_CHANGED, ENGINE_CALLBACK_PATCHBAY_CLIENT_POSITION_CHANGED,


Loading…
Cancel
Save