From 50bfed7180b2554d80f7109c2a52b3f9a7a936ee Mon Sep 17 00:00:00 2001 From: Vesa Date: Wed, 15 Oct 2014 20:48:22 +0300 Subject: [PATCH] Fix Carla in memmgr branch --- plugins/carlabase/carla.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/carlabase/carla.cpp b/plugins/carlabase/carla.cpp index b07e7119d..167a476d2 100644 --- a/plugins/carlabase/carla.cpp +++ b/plugins/carlabase/carla.cpp @@ -180,7 +180,7 @@ CarlaInstrument::CarlaInstrument(InstrumentTrack* const instrumentTrack, const D fDescriptor->activate(fHandle); // we need a play-handle which cares for calling play() - InstrumentPlayHandle * iph = new InstrumentPlayHandle( this ); + InstrumentPlayHandle * iph = new InstrumentPlayHandle( this, instrumentTrack ); engine::mixer()->addPlayHandle( iph ); connect(engine::mixer(), SIGNAL(sampleRateChanged()), this, SLOT(sampleRateChanged()));