aboutsummaryrefslogtreecommitdiffstats
path: root/alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-01-30 05:07:31 -0800
committerChris Robinson <[email protected]>2023-01-30 05:07:31 -0800
commit0985abc6536f64a4ff16fd159336173782fde698 (patch)
treea6a921891bc0ae7bd7e091a732c14e4751f4ecc0 /alc
parenta719f0f963f5b47b78b89d84fdf8fe4cfa523323 (diff)
Distinguish a couple log messages
And downgrade an ERR to a WARN
Diffstat (limited to 'alc')
-rw-r--r--alc/backends/wasapi.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/backends/wasapi.cpp b/alc/backends/wasapi.cpp
index 154a2200..e834eef4 100644
--- a/alc/backends/wasapi.cpp
+++ b/alc/backends/wasapi.cpp
@@ -1035,7 +1035,7 @@ HRESULT WasapiPlayback::resetProxy()
hr = mClient->IsFormatSupported(AUDCLNT_SHAREMODE_SHARED, &OutputType.Format, &wfx);
if(FAILED(hr))
{
- ERR("Failed to check format support: 0x%08lx\n", hr);
+ WARN("Failed to check format support: 0x%08lx\n", hr);
hr = mClient->GetMixFormat(&wfx);
}
if(FAILED(hr))
@@ -1657,12 +1657,12 @@ HRESULT WasapiCapture::resetProxy()
hr = mClient->IsFormatSupported(AUDCLNT_SHAREMODE_SHARED, &InputType.Format, &wfx);
if(FAILED(hr))
{
- WARN("Failed to check format support: 0x%08lx\n", hr);
+ WARN("Failed to check capture format support: 0x%08lx\n", hr);
hr = mClient->GetMixFormat(&wfx);
}
if(FAILED(hr))
{
- ERR("Failed to check format support: 0x%08lx\n", hr);
+ ERR("Failed to find a supported capture format: 0x%08lx\n", hr);
return hr;
}