remove "rate" from constructor

This commit is contained in:
Mike Oliphant
2023-03-21 09:45:02 -07:00
parent cbf1ad7ccf
commit 15642132ba
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ static LV2_Handle instantiate(const LV2_Descriptor*, double rate, const char*, c
) {
try
{
auto nam = std::make_unique<NAM::Plugin>(static_cast<float>(rate));
auto nam = std::make_unique<NAM::Plugin>();
if (nam->initialize(rate, features))
{