zynaddsubfx

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

commit 1967989615d811074c76b02547c3609c5bafb33c
parent 42f4baa50abf0cd0ee73eac18aab0ba219803a24
Author: michiboo <[email protected]>
Date:   Tue, 23 Jul 2019 00:38:11 +0300

fix trigger test

Diffstat:
Msrc/Synth/WatchPoint.cpp | 47++++++++++++++++++++++++-----------------------
1 file changed, 24 insertions(+), 23 deletions(-)

diff --git a/src/Synth/WatchPoint.cpp b/src/Synth/WatchPoint.cpp @@ -208,33 +208,34 @@ void WatchManager::satisfy(const char *id, float *f, int n) if(!trigger[selected]){ if(i == 0) i++; - if (f[i-1] <= 0 && f[i] > 0) + if (f[i-1] <= 0 && f[i] > 0){ trigger[selected] = true; - for(int k=0; k<MAX_WATCH; ++k) { - if(selected != k && !trigger[k]){ - char tmp[128]; - char tmp1[128]; - strcpy(tmp, active_list[selected]); - strcpy(tmp1, active_list[k]); - - if(strlen(active_list[k]) < strlen(active_list[selected])) - tmp[strlen(tmp)-1] =0; - else if (strlen(active_list[k]) > strlen(active_list[selected])) - tmp1[strlen(tmp1)-1] =0; - if(!strcmp(tmp1,tmp)){ - trigger[k] = true; - int space_k = MAX_SAMPLE - sample_list[k]; - - if(space_k >= n) - space_k = n; - - for(int j = i; j < space_k ; ++j){ - data_list[k][sample_list[k]] = prebuffer[k][j]; - sample_list[k]++; + for(int k=0; k<MAX_WATCH; ++k){ + if(selected != k && !trigger[k]){ + char tmp[128]; + char tmp1[128]; + strcpy(tmp, active_list[selected]); + strcpy(tmp1, active_list[k]); + + if(strlen(active_list[k]) < strlen(active_list[selected])) + tmp[strlen(tmp)-1] =0; + else if (strlen(active_list[k]) > strlen(active_list[selected])) + tmp1[strlen(tmp1)-1] =0; + if(!strcmp(tmp1,tmp)){ + trigger[k] = true; + int space_k = MAX_SAMPLE - sample_list[k]; + + if(space_k >= n) + space_k = n; + + for(int j = i; j < space_k ; ++j){ + data_list[k][sample_list[k]] = prebuffer[k][j]; + sample_list[k]++; + } } } - } } + } } if(trigger[selected]){