Merge pull request #34306 from Catchawink/master
Fixed an issue with recording audio.
This commit is contained in:
commit
217714760b
1 changed files with 3 additions and 2 deletions
|
@ -192,10 +192,11 @@ void AudioEffectRecord::set_recording_active(bool p_record) {
|
|||
}
|
||||
|
||||
ensure_thread_stopped();
|
||||
recording_active = true;
|
||||
current_instance->init();
|
||||
} else {
|
||||
recording_active = false;
|
||||
}
|
||||
|
||||
recording_active = p_record;
|
||||
}
|
||||
|
||||
bool AudioEffectRecord::is_recording_active() const {
|
||||
|
|
Loading…
Reference in a new issue