commit 3ab91249b12a7b74a900a8381987447be4fd57a3
parent eaae0aaf8470db1e7eefab4697104275382a280c
Author: michiboo <chanmickyyun@gmail.com>
Date: Mon, 24 Jun 2019 19:12:17 +0300
fix minor bug
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/src/Synth/WatchPoint.cpp b/src/Synth/WatchPoint.cpp
@@ -105,7 +105,6 @@ void WatchManager::tick(void)
if(sample_list[i] >= framesize-1) {
char arg_types[MAX_SAMPLE+1] = {0};
rtosc_arg_t arg_val[MAX_SAMPLE];
-
for(int j=0; j<sample_list[i]; ++j) {
arg_types[j] = 'f';
arg_val[j].f = data_list[i][j];
@@ -181,7 +180,6 @@ void WatchManager::satisfy(const char *id, float *f, int n)
data_list[selected][start] = f[i];
start++;
}
-
sample_list[selected] += space;
}
}