mirror of
https://github.com/airwindows/airwindows.git
synced 2026-05-21 06:46:21 -06:00
VSTs all instantiate both fpdL and fpdR with independent random init values
This commit is contained in:
parent
0497d9494b
commit
5626e142ae
181 changed files with 404 additions and 201 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue