diff options
author | Chris Robinson <[email protected]> | 2023-05-25 23:00:10 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-05-25 23:00:10 -0700 |
commit | 453677bc983a5c17a6d4426e845114bb7be9b770 (patch) | |
tree | 875e81cd46db672d601393b62c00135fc554bdbc /alc | |
parent | 4a75de91f6cef6467dadfc307b231235d6c3394b (diff) |
Don't throw when failing to stop Oboe playback
Diffstat (limited to 'alc')
-rw-r--r-- | alc/backends/oboe.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/alc/backends/oboe.cpp b/alc/backends/oboe.cpp index 01d6fb85..a0d806c8 100644 --- a/alc/backends/oboe.cpp +++ b/alc/backends/oboe.cpp @@ -206,8 +206,7 @@ void OboePlayback::stop() { oboe::Result result{mStream->stop()}; if(result != oboe::Result::OK) - throw al::backend_exception{al::backend_error::DeviceError, "Failed to stop stream: %s", - oboe::convertToText(result)}; + ERR("Failed to stop stream: %s\n", oboe::convertToText(result)); } |