forked from dolphin-emu/dolphin
Set Cubeb as default on Windows
Cubeb and Xaudio2 are identical in features while Cubeb has lower latency and is still actively being worked on.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user