diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2026-03-23 15:27:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-23 15:27:29 -0500 |
| commit | c05b231015375a88ecb4c4eea69862c8c75b809c (patch) | |
| tree | 01e2bae15516053486dea1078220ccfb672286a1 /Source/Core/AudioCommon/WASAPIStream.cpp | |
| parent | cddffd2e2a40a00ad1da6821e98e9a06bf02d97d (diff) | |
| parent | 6b2a8eff15bffc1dc6831d236032c751f426eb13 (diff) | |
Merge pull request #14496 from Dentomologist/audiopane_fix_wasapi_default_device_combo_selection
AudioPane: Fix WASAPI default device combo selection
Diffstat (limited to 'Source/Core/AudioCommon/WASAPIStream.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/WASAPIStream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/WASAPIStream.cpp b/Source/Core/AudioCommon/WASAPIStream.cpp index afd5531ae8..9cbf915e82 100644 --- a/Source/Core/AudioCommon/WASAPIStream.cpp +++ b/Source/Core/AudioCommon/WASAPIStream.cpp @@ -176,7 +176,7 @@ bool WASAPIStream::SetRunning(bool running) HRESULT result; - if (Config::Get(Config::MAIN_WASAPI_DEVICE) == "default") + if (Config::IsDefaultValue(Config::MAIN_WASAPI_DEVICE)) { result = m_enumerator->GetDefaultAudioEndpoint(eRender, eConsole, &device); } |
