commit 872477e172ae4f9e22d435df3b8cd828448c8ae4
parent 55f771b6238ab8f8f5b9c28f0f3d705972d9a2e1
Author: michiboo <[email protected]>
Date: Mon, 12 Aug 2019 22:39:52 +0300
fix off by one error in watch point
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Synth/WatchPoint.cpp b/src/Synth/WatchPoint.cpp
@@ -115,7 +115,7 @@ void WatchManager::tick(void)
int framesize = 2;
call_count[i] = 0;
if(strstr(active_list[i], "noteout") != NULL)
- framesize = MAX_SAMPLE;
+ framesize = MAX_SAMPLE -1;
if(sample_list[i] >= framesize && call_count[i]==0) {
char arg_types[MAX_SAMPLE+1] = {0};
rtosc_arg_t arg_val[MAX_SAMPLE];