[HTML5] Fix errors when Mic is not allowed.

This commit is contained in:
Fabio Alessandrelli 2020-12-08 11:18:03 +01:00
parent a28d5e2be7
commit eb2152538c
3 changed files with 20 additions and 12 deletions

View file

@ -189,7 +189,9 @@ Error AudioDriverJavaScript::capture_start() {
lock();
input_buffer_init(buffer_length);
unlock();
godot_audio_capture_start();
if (godot_audio_capture_start()) {
return FAILED;
}
return OK;
}