Merge pull request #34306 from Catchawink/master

Fixed an issue with recording audio.
This commit is contained in:
Rémi Verschelde 2019-12-12 21:57:10 +01:00 committed by GitHub
commit 217714760b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {