Fix issue causing the Android editor to crash when creating a new AudioStreamMicrophone
Fixes https://github.com/godotengine/godot/issues/73801
This commit is contained in:
@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user