/[svn]/linuxsampler/trunk/src/engines/gig/Engine.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/gig/Engine.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1700 by persson, Sun Feb 17 12:40:59 2008 UTC revision 1715 by schoenebeck, Tue Mar 11 15:20:46 2008 UTC
# Line 1849  namespace LinuxSampler { namespace gig { Line 1849  namespace LinuxSampler { namespace gig {
1849          if (!pEngineChannel->fxSends.empty()) {          if (!pEngineChannel->fxSends.empty()) {
1850              for (int iFxSend = 0; iFxSend < pEngineChannel->GetFxSendCount(); iFxSend++) {              for (int iFxSend = 0; iFxSend < pEngineChannel->GetFxSendCount(); iFxSend++) {
1851                  FxSend* pFxSend = pEngineChannel->GetFxSend(iFxSend);                  FxSend* pFxSend = pEngineChannel->GetFxSend(iFxSend);
1852                  if (pFxSend->MidiController() == itControlChangeEvent->Param.CC.Controller)                  if (pFxSend->MidiController() == itControlChangeEvent->Param.CC.Controller) {
1853                      pFxSend->SetLevel(itControlChangeEvent->Param.CC.Value);                      pFxSend->SetLevel(itControlChangeEvent->Param.CC.Value);
1854                      pFxSend->SetInfoChanged(true);                      pFxSend->SetInfoChanged(true);
1855                    }
1856              }              }
1857          }          }
1858      }      }
# Line 2048  namespace LinuxSampler { namespace gig { Line 2049  namespace LinuxSampler { namespace gig {
2049      }      }
2050    
2051      String Engine::Version() {      String Engine::Version() {
2052          String s = "$Revision: 1.88 $";          String s = "$Revision: 1.89 $";
2053          return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword          return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
2054      }      }
2055    

Legend:
Removed from v.1700  
changed lines
  Added in v.1715

  ViewVC Help
Powered by ViewVC