better default wavetable

This commit is contained in:
tildearrow 2021-12-27 15:21:38 -05:00
parent fa6c9fb7b7
commit a0a27e91f3
1 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@ struct DivWavetable {
DivWavetable():
len(32) {
memset(data,0,32*sizeof(int));
for (int i=0; i<32; i++) {
data[i]=i;
}
}
};