VST3: correctly set offline processing

This commit is contained in:
Robin Gareus
2024-08-15 14:49:41 +02:00
parent 8a8ae7069e
commit d4b71a7777

View File

@@ -1970,7 +1970,11 @@ VST3PI::set_owner (SessionObject* o)
void
VST3PI::set_non_realtime (bool yn)
{
if (_process_offline == yn) {
return;
}
_process_offline = yn;
update_processor ();
}
int32