From 01073946b488dcacb4e2259be8d863345dc26d64 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Wed, 8 Feb 2017 21:29:27 +0100 Subject: [PATCH] Fix default audio backend on Android being "No audio output" People who already have encountered the problem will need to manually change the audio backend (or delete the config INI). --- Source/Core/AudioCommon/AudioCommon.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/AudioCommon/AudioCommon.cpp b/Source/Core/AudioCommon/AudioCommon.cpp index 86d3d5943e..77551829bf 100644 --- a/Source/Core/AudioCommon/AudioCommon.cpp +++ b/Source/Core/AudioCommon/AudioCommon.cpp @@ -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; }