diff --git a/01b-BoringMixer/BoringMixer.cpp b/01b-BoringMixer/BoringMixer.cpp index 592a5f6..1838b4f 100644 --- a/01b-BoringMixer/BoringMixer.cpp +++ b/01b-BoringMixer/BoringMixer.cpp @@ -43,6 +43,6 @@ PluginLoad(BoringMixer2UGens) { ft = inTable; // registerUnit takes the place of the Define*Unit functions. It automatically checks for the presence of a // destructor function. - // However, it does not seem to be possible to disable buffer aliasing with the C++ header. - registerUnit(ft, "BoringMixer2"); + // starting from version 3.11 it also allows to disable buffer aliasing + registerUnit(ft, "BoringMixer2", false); } diff --git a/02b-MySaw/MySaw.cpp b/02b-MySaw/MySaw.cpp index 8cce0a6..896a634 100755 --- a/02b-MySaw/MySaw.cpp +++ b/02b-MySaw/MySaw.cpp @@ -131,6 +131,6 @@ PluginLoad(MySawUGens) // registerUnit takes the place of the Define*Unit functions. It automatically checks for the presence of a // destructor function. - // However, it does not seem to be possible to disable buffer aliasing with the C++ header. - registerUnit(ft, "MySaw"); + // starting from version 3.11 it also allows to disable buffer aliasing + registerUnit(ft, "MySaw", false); } diff --git a/02b-MySaw/MySaw2.cpp b/02b-MySaw/MySaw2.cpp index e04d911..9d3af91 100755 --- a/02b-MySaw/MySaw2.cpp +++ b/02b-MySaw/MySaw2.cpp @@ -131,6 +131,6 @@ PluginLoad(MySaw2UGens) // registerUnit takes the place of the Define*Unit functions. It automatically checks for the presence of a // destructor function. - // However, it does not seem to be possible to disable buffer aliasing with the C++ header. - registerUnit(ft, "MySaw2"); + // starting from version 3.11 it also allows to disable buffer aliasing + registerUnit(ft, "MySaw2", false); }