diff options
| author | LAGonauta <lagonauta@gmail.com> | 2019-03-18 09:21:40 -0300 |
|---|---|---|
| committer | LAGonauta <lagonauta@gmail.com> | 2019-03-18 09:21:40 -0300 |
| commit | 99a35568ca9ff846f95b59f6e34a7d94059c19bc (patch) | |
| tree | 457c29fc15bacde3bb8ccbde5e04f78e7a986aa8 /Source/Core/AudioCommon | |
| parent | f37ff190e425bb695fb7c2b23c0a74f234149f99 (diff) | |
Allow XAudio2 to be selected as a surround backend.
Diffstat (limited to 'Source/Core/AudioCommon')
| -rw-r--r-- | Source/Core/AudioCommon/AudioCommon.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/AudioCommon/AudioCommon.cpp b/Source/Core/AudioCommon/AudioCommon.cpp index 14bef2ce62..450d2ff8c5 100644 --- a/Source/Core/AudioCommon/AudioCommon.cpp +++ b/Source/Core/AudioCommon/AudioCommon.cpp @@ -129,6 +129,8 @@ bool SupportsDPL2Decoder(const std::string& backend) return true; if (backend == BACKEND_PULSEAUDIO) return true; + if (backend == BACKEND_XAUDIO2) + return true; return false; } |
