Merge pull request #4868 from JosJuice/android-default-audio

Fix default audio backend on Android being "No audio output"
This commit is contained in:
Markus Wick 2017-02-08 21:37:33 +01:00 committed by GitHub
commit fb2098917b
1 changed files with 3 additions and 3 deletions

View File

@ -95,15 +95,15 @@ void ShutdownSoundStream()
std::string GetDefaultSoundBackend()
{
std::string backend = BACKEND_NULLSOUND;
#if defined __linux__
#if defined ANDROID
backend = BACKEND_OPENSLES;
#elif defined __linux__
if (AlsaSound::isValid())
backend = BACKEND_ALSA;
#elif defined __APPLE__
backend = BACKEND_COREAUDIO;
#elif defined _WIN32
backend = BACKEND_XAUDIO2;
#elif defined ANDROID
backend = BACKEND_OPENSLES;
#endif
return backend;
}