Reset last processing status for CLAP on start
Just like we're doing in the VST3 wrapper.
This commit is contained in:
parent
582ab50e58
commit
4ac0c40812
1 changed files with 2 additions and 0 deletions
|
@ -1509,6 +1509,8 @@ impl<P: ClapPlugin> Wrapper<P> {
|
||||||
check_null_ptr!(false, plugin);
|
check_null_ptr!(false, plugin);
|
||||||
let wrapper = &*(plugin as *const Self);
|
let wrapper = &*(plugin as *const Self);
|
||||||
|
|
||||||
|
// Always reset the processing status when the plugin gets activated or deactivated
|
||||||
|
wrapper.last_process_status.store(ProcessStatus::Normal);
|
||||||
wrapper.is_processing.store(true, Ordering::SeqCst);
|
wrapper.is_processing.store(true, Ordering::SeqCst);
|
||||||
|
|
||||||
true
|
true
|
||||||
|
|
Loading…
Add table
Reference in a new issue