mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-04 20:06:41 +01:00
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:
parent
2f89a50318
commit
ee8226cc1b
@ -89,10 +89,8 @@ std::string GetDefaultSoundBackend()
|
|||||||
#elif defined __linux__
|
#elif defined __linux__
|
||||||
if (AlsaSound::isValid())
|
if (AlsaSound::isValid())
|
||||||
backend = BACKEND_ALSA;
|
backend = BACKEND_ALSA;
|
||||||
#elif defined __APPLE__
|
#elif defined(__APPLE__) || defined(_WIN32)
|
||||||
backend = BACKEND_CUBEB;
|
backend = BACKEND_CUBEB;
|
||||||
#elif defined _WIN32
|
|
||||||
backend = BACKEND_XAUDIO2;
|
|
||||||
#endif
|
#endif
|
||||||
return backend;
|
return backend;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user