mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Fix issue causing the Android editor to crash when creating a new AudioStreamMicrophone
Fixes https://github.com/godotengine/godot/issues/73801
(cherry picked from commit 8ca14183f0)
This commit is contained in:
parent
2dfb108a6a
commit
db7406e6a7
6 changed files with 87 additions and 17 deletions
|
|
@ -272,7 +272,8 @@ Error AudioDriverOpenSL::input_start() {
|
|||
return init_input_device();
|
||||
}
|
||||
|
||||
return OK;
|
||||
WARN_PRINT("Unable to start audio capture - No RECORD_AUDIO permission");
|
||||
return ERR_UNAUTHORIZED;
|
||||
}
|
||||
|
||||
Error AudioDriverOpenSL::input_stop() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue