waveform width/height controls

This commit is contained in:
tildearrow 2022-01-11 03:16:32 -05:00
parent 02b5b05e04
commit 5637639950
5 changed files with 47 additions and 7 deletions

View file

@ -1,12 +1,12 @@
struct DivWavetable {
int len, min, max;
int data[32];
int data[256];
DivWavetable():
len(32),
min(0),
max(31) {
for (int i=0; i<32; i++) {
for (int i=0; i<256; i++) {
data[i]=i;
}
}