mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Merge pull request #12708 from brad0/openbsd_sound_backend
Set default sound backend on OpenBSD to cubeb
This commit is contained in:
@ -100,7 +100,7 @@ std::string GetDefaultSoundBackend()
|
|||||||
#elif defined __linux__
|
#elif defined __linux__
|
||||||
if (AlsaSound::IsValid())
|
if (AlsaSound::IsValid())
|
||||||
backend = BACKEND_ALSA;
|
backend = BACKEND_ALSA;
|
||||||
#elif defined(__APPLE__) || defined(_WIN32)
|
#elif defined(__APPLE__) || defined(_WIN32) || defined(__OpenBSD__)
|
||||||
backend = BACKEND_CUBEB;
|
backend = BACKEND_CUBEB;
|
||||||
#endif
|
#endif
|
||||||
return backend;
|
return backend;
|
||||||
|
Reference in New Issue
Block a user