GUI: fix note pasting

issue #23
This commit is contained in:
tildearrow 2022-01-19 04:32:40 -05:00
parent dce289a5a0
commit 44ef49d267
3 changed files with 13 additions and 2 deletions

3
src/engine/wavetable.cpp Normal file
View file

@ -0,0 +1,3 @@
#include "wavetable.h"
// ???

View file

@ -1,7 +1,13 @@
#ifndef _WAVETABLE_H
#define _WAVETABLE_H
#include "safeWriter.h"
struct DivWavetable {
int len, min, max;
int data[256];
void putWaveData(SafeWriter* w);
bool save(const char* path);
DivWavetable():
len(32),
min(0),
@ -11,3 +17,5 @@ struct DivWavetable {
}
}
};
#endif