AnalogTapeModel

Physical modelling signal processing for analog tape recording
Log | Files | Refs | Submodules | README | LICENSE

commit e454b49ce6f8b009bb40b91bde9a31f35b39c8af
parent 2a3b0248e2b05b5aa3b8d9ef7108bc65f41620e2
Author: Jatin Chowdhury <[email protected]>
Date:   Thu, 19 Aug 2021 14:22:31 -0700

Headless: Fix parameter setting in benchmark

Diffstat:
MPlugin/Source/Headless/Benchmarks.cpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Plugin/Source/Headless/Benchmarks.cpp b/Plugin/Source/Headless/Benchmarks.cpp @@ -41,14 +41,14 @@ void setParameters (AudioProcessor* plugin, int mode) { if (param->getName (1024) == "Oversampling") { - param->setValue (3.0f / 4.0f); // 8x + param->setValueNotifyingHost (3.0f / 4.0f); // 8x std::cout << "Setting parameter " << param->getName (1024) << ": " << param->getText (param->getValue(), 1024) << std::endl; } if (param->getName (1024) == "Tape Mode") { - param->setValue ((float) mode / 5.0f); // STN + param->setValueNotifyingHost ((float) mode / 5.0f); std::cout << "Setting parameter " << param->getName (1024) << ": " << param->getText (param->getValue(), 1024) << std::endl; }