out of bounds and non-determinism fixes

the soldiers play properly now
This commit is contained in:
tildearrow 2021-05-28 02:02:54 -05:00
parent 485c4bbadc
commit 23dc645ced
7 changed files with 74 additions and 16 deletions

View file

@ -1,4 +1,9 @@
struct DivWavetable {
int len;
int data[32];
DivWavetable():
len(32) {
memset(data,0,32*sizeof(int));
}
};