implement Furnace format saving
experimental and no loading yet
This commit is contained in:
parent
c43cc0ae80
commit
8d9cddde37
5 changed files with 390 additions and 28 deletions
|
|
@ -1,9 +1,11 @@
|
|||
struct DivWavetable {
|
||||
int len;
|
||||
int len, min, max;
|
||||
int data[32];
|
||||
|
||||
DivWavetable():
|
||||
len(32) {
|
||||
len(32),
|
||||
min(0),
|
||||
max(31) {
|
||||
for (int i=0; i<32; i++) {
|
||||
data[i]=i;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue