diff options
| author | Léo Lam <leo@leolam.fr> | 2019-11-16 18:13:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-16 18:13:58 +0100 |
| commit | b712cc106bb918a8a06324a681e0c4a35b3473a9 (patch) | |
| tree | 4767d95a842d3551a5918ededb17dfdccb866967 /Source/Core/AudioCommon/AudioCommon.cpp | |
| parent | a77108236ed5289f3def78495dcf387a46005e69 (diff) | |
| parent | 08787ebc4a53bb9e64b3bb3c87f20e63c0d87841 (diff) | |
Merge pull request #7909 from LAGonauta/dplii-quality-slider
Add slider to change DPLII decoder quality
Diffstat (limited to 'Source/Core/AudioCommon/AudioCommon.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/AudioCommon.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/AudioCommon/AudioCommon.cpp b/Source/Core/AudioCommon/AudioCommon.cpp index a8f09c2688..467406dd9c 100644 --- a/Source/Core/AudioCommon/AudioCommon.cpp +++ b/Source/Core/AudioCommon/AudioCommon.cpp @@ -101,6 +101,11 @@ std::string GetDefaultSoundBackend() return backend; } +DPL2Quality GetDefaultDPL2Quality() +{ + return DPL2Quality::High; +} + std::vector<std::string> GetSoundBackends() { std::vector<std::string> backends; |
