--- linuxsampler/trunk/src/engines/gig/Engine.cpp 2008/02/17 12:40:59 1700 +++ linuxsampler/trunk/src/engines/gig/Engine.cpp 2008/03/11 15:20:46 1715 @@ -1849,9 +1849,10 @@ if (!pEngineChannel->fxSends.empty()) { for (int iFxSend = 0; iFxSend < pEngineChannel->GetFxSendCount(); iFxSend++) { FxSend* pFxSend = pEngineChannel->GetFxSend(iFxSend); - if (pFxSend->MidiController() == itControlChangeEvent->Param.CC.Controller) + if (pFxSend->MidiController() == itControlChangeEvent->Param.CC.Controller) { pFxSend->SetLevel(itControlChangeEvent->Param.CC.Value); pFxSend->SetInfoChanged(true); + } } } } @@ -2048,7 +2049,7 @@ } String Engine::Version() { - String s = "$Revision: 1.88 $"; + String s = "$Revision: 1.89 $"; return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword }