summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/AudioCommon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/AudioCommon/AudioCommon.cpp')
-rw-r--r--Source/Core/AudioCommon/AudioCommon.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/Core/AudioCommon/AudioCommon.cpp b/Source/Core/AudioCommon/AudioCommon.cpp
index 450d2ff8c5..1ffc377c56 100644
--- a/Source/Core/AudioCommon/AudioCommon.cpp
+++ b/Source/Core/AudioCommon/AudioCommon.cpp
@@ -89,10 +89,8 @@ std::string GetDefaultSoundBackend()
#elif defined __linux__
if (AlsaSound::isValid())
backend = BACKEND_ALSA;
-#elif defined __APPLE__
+#elif defined(__APPLE__) || defined(_WIN32)
backend = BACKEND_CUBEB;
-#elif defined _WIN32
- backend = BACKEND_XAUDIO2;
#endif
return backend;
}