VSTs all instantiate both fpdL and fpdR with independent random init values

This commit is contained in:
airwindows 2022-02-28 02:52:42 -05:00
parent 0497d9494b
commit 5626e142ae
181 changed files with 404 additions and 201 deletions

View file

@ -15,7 +15,8 @@ Channel8::Channel8(audioMasterCallback audioMaster) :
consoletype = 0.0;
drive = 0.0;
output = 1.0;
fpd = 1.0; while (fpd < 16386) fpd = rand()*UINT32_MAX;
fpdL = 1.0; while (fpdL < 16386) fpdL = rand()*UINT32_MAX;
fpdR = 1.0; while (fpdR < 16386) fpdR = rand()*UINT32_MAX;
iirSampleLA = 0.0;
iirSampleRA = 0.0;
iirSampleLB = 0.0;