VST stub for queued updates
This commit is contained in:
parent
356b14fc67
commit
2da580894c
1 changed files with 6 additions and 0 deletions
|
|
@ -595,6 +595,12 @@ void PLUGIN_API SfizzVstProcessor::update(FUnknown* changedUnknown, int32 messag
|
||||||
|
|
||||||
bool SfizzVstProcessor::processUpdate(FUnknown* changedUnknown, int32 message)
|
bool SfizzVstProcessor::processUpdate(FUnknown* changedUnknown, int32 message)
|
||||||
{
|
{
|
||||||
|
if (QueuedUpdates* update = FCast<QueuedUpdates>(changedUnknown)) {
|
||||||
|
for (FObject* queuedUpdate : update->getUpdates(this))
|
||||||
|
processUpdate(queuedUpdate, message);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue