zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 6eff03c89f336930edb87422543d2017e9af5da2
parent b1aea115fe18b09e72455189eed326be79f5c884
Author: fundamental <mark.d.mccurry@gmail.com>
Date:   Tue, 16 Jun 2009 09:08:27 -0400

Master will now cleanup Effects on AllSoundsOff

Diffstat:
Msrc/Misc/Master.C | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/src/Misc/Master.C b/src/Misc/Master.C @@ -192,6 +192,15 @@ void Master::setcontroller(unsigned char chan,unsigned int type,int par){ if ((chan==part[npart]->Prcvchn) && (part[npart]->Penabled!=0)) part[npart]->SetController(type,par); }; + + if(type==C_allsoundsoff) { //cleanup insertion/system FX + for (int nefx=0;nefx<NUM_SYS_EFX;++nefx) { + sysefx[nefx]->cleanup(); + } + for (int nefx=0;nefx<NUM_INS_EFX;++nefx) { + insefx[nefx]->cleanup(); + } + } }; };