aboutsummaryrefslogtreecommitdiffstats
path: root/alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-05-25 23:00:10 -0700
committerChris Robinson <[email protected]>2023-05-25 23:00:10 -0700
commit453677bc983a5c17a6d4426e845114bb7be9b770 (patch)
tree875e81cd46db672d601393b62c00135fc554bdbc /alc
parent4a75de91f6cef6467dadfc307b231235d6c3394b (diff)
Don't throw when failing to stop Oboe playback
Diffstat (limited to 'alc')
-rw-r--r--alc/backends/oboe.cpp3
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));
}