13
0

VST3: correctly set offline processing

This commit is contained in:
Robin Gareus 2024-08-15 14:49:41 +02:00
parent 8a8ae7069e
commit d4b71a7777
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

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