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

@ -23,7 +23,8 @@ UnBox::UnBox(audioMasterCallback audioMaster) :
iirSampleAR = 0.0;
iirSampleBR = 0.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;
//this is reset: values being initialized only once. Startup values, whatever they are.
_canDo.insert("plugAsChannelInsert"); // plug-in can be used as a channel insert effect.