This commit is contained in:
tildearrow 2022-04-08 12:21:42 -05:00
parent 65f893822a
commit 48e8e49ba8
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ class DivWaveSynth {
height(31), height(31),
first(false), first(false),
activeChangedB(false) { activeChangedB(false) {
memset(wave1,0,sizeof(int)*256); memset(wave1,0,256);
memset(wave2,0,sizeof(int)*256); memset(wave2,0,256);
memset(output,0,sizeof(int)*256); memset(output,0,sizeof(int)*256);
} }
}; };