zynaddsubfx

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

commit dc9f8ac7d86aea99b4599e0863e079270e12eee2
parent a592724d99e936ad83ee9d8169d20633e5ba4f82
Author: michiboo <[email protected]>
Date:   Mon, 17 Jun 2019 01:11:49 +0300

change condition size to MAX_sample-1 in tick

Diffstat:
Msrc/Synth/WatchPoint.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Synth/WatchPoint.cpp b/src/Synth/WatchPoint.cpp @@ -100,7 +100,7 @@ void WatchManager::tick(void) //Try to send out any vector stuff for(int i=0; i<MAX_WATCH; ++i) { if(sample_list[i]) { - if(data_list[i][sample_list[i]-1] != 0){ + if(data_list[i][MAX_SAMPLE-1] != 0){ char arg_types[MAX_SAMPLE+1] = {0}; rtosc_arg_t arg_val[MAX_SAMPLE]; for(int j=0; j<sample_list[i]; ++j) {