1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

VST3 Host: Avoid calling addPoint on input parameter queue

This commit is contained in:
reuk 2024-11-10 11:29:45 +00:00
parent 0ea1af03a1
commit be6fe2b403
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -2423,10 +2423,7 @@ public:
Steinberg::int32 indexOut = notInVector;
if (auto* queue = addParameterData (id, indexOut))
{
Steinberg::int32 index{};
queue->addPoint (offset, value, index);
}
queue->append ({ offset, value });
}
void clear()