commit f748fd350c6cbd9d9ce6733e16911de6a6074c63
parent 7ee08076a6cf3129b29145ca4f3a183388072a61
Author: Johannes Lorenz <[email protected]>
Date: Sat, 13 Jun 2015 07:52:00 +0200
Fixed alias behaviour for denormalkillbuf.
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/TODO.txt b/TODO.txt
@@ -15,7 +15,7 @@ Status:
(2) will be fixed with fftw3 (?), until then maybe use separate mutex?
(3) will be fixed by fundamental
(4)
-(5) fixed + tested, but alias() behaviour is unclear yet
+(5) fixed + tested
(6)
(7) -> will not be fixed (should stay random)
(8) fixed + tested
diff --git a/src/globals.cpp b/src/globals.cpp
@@ -32,6 +32,9 @@ void SYNTH_T::alias()
oscilsize_f = oscilsize;
//produce denormal buf
+ // note: once there will be more buffers, use a cleanup function
+ // for deleting the buffers and also call it in the dtor
+ delete[] denormalkillbuf;
denormalkillbuf = new float [buffersize];
for(int i = 0; i < buffersize; ++i)
denormalkillbuf[i] = (RND - 0.5f) * 1e-16;