summaryrefslogtreecommitdiffstats
path: root/drivers/wasapi
diff options
context:
space:
mode:
authorAlessandro Famà <me@alessandrofama.com>2024-01-09 16:37:06 +0100
committerAlessandro Famà <me@alessandrofama.com>2024-01-09 17:36:13 +0100
commit998078f8d7414a21214d4ad4056e0fb8b4e55180 (patch)
tree2b650736268cd98fd630262120154b2d3fb24344 /drivers/wasapi
parent8297ec949bad8029372da13e1d4e36599989b5ae (diff)
downloadredot-engine-998078f8d7414a21214d4ad4056e0fb8b4e55180.tar.gz
Fix Dummy audio driver initialization issue on WASAPI output device initialization failure
`AudioDriverWASAPI::init` consistently returns `Error::OK`, even when encountering a failure during the initialization of the output device. This behaviour blocks the dummy driver from initializing in `AudioDriverManager::initialize`.
Diffstat (limited to 'drivers/wasapi')
-rw-r--r--drivers/wasapi/audio_driver_wasapi.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/wasapi/audio_driver_wasapi.cpp b/drivers/wasapi/audio_driver_wasapi.cpp
index e39373e7a0..64f2d1f203 100644
--- a/drivers/wasapi/audio_driver_wasapi.cpp
+++ b/drivers/wasapi/audio_driver_wasapi.cpp
@@ -557,13 +557,11 @@ Error AudioDriverWASAPI::init() {
target_latency_ms = Engine::get_singleton()->get_audio_output_latency();
- Error err = init_output_device();
- if (err != OK) {
- ERR_PRINT("WASAPI: init_output_device error");
- }
-
exit_thread.clear();
+ Error err = init_output_device();
+ ERR_FAIL_COND_V_MSG(err != OK, err, "WASAPI: init_output_device error.");
+
thread.start(thread_func, this);
return OK;