Skip to content
Permalink
Browse files
Merge pull request #7972 from Miksel12/cubeb-standard
Set Cubeb as default on Windows
  • Loading branch information
leoetlino committed May 11, 2019
2 parents 2f89a50 + ee8226c commit a0a0a68
Showing 1 changed file with 1 addition and 3 deletions.
@@ -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;
}

0 comments on commit a0a0a68

Please sign in to comment.