furnace/src/engine/wavetable.h
tildearrow 23dc645ced out of bounds and non-determinism fixes
the soldiers play properly now
2021-05-28 02:02:54 -05:00

10 lines
124 B
C

struct DivWavetable {
int len;
int data[32];
DivWavetable():
len(32) {
memset(data,0,32*sizeof(int));
}
};