mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-06 12:55:05 +00:00
724b1cd1a8
now it's safer
23 lines
No EOL
409 B
C
23 lines
No EOL
409 B
C
#ifndef _WAVETABLE_H
|
|
#define _WAVETABLE_H
|
|
#include "safeWriter.h"
|
|
#include "dataErrors.h"
|
|
|
|
struct DivWavetable {
|
|
int len, min, max;
|
|
int data[256];
|
|
|
|
void putWaveData(SafeWriter* w);
|
|
DivDataErrors readWaveData(SafeReader& reader, short version);
|
|
bool save(const char* path);
|
|
DivWavetable():
|
|
len(32),
|
|
min(0),
|
|
max(31) {
|
|
for (int i=0; i<256; i++) {
|
|
data[i]=i;
|
|
}
|
|
}
|
|
};
|
|
|
|
#endif |