aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkcat <[email protected]>2018-06-22 11:49:00 -0700
committerGitHub <[email protected]>2018-06-22 11:49:00 -0700
commitdc3fa3e51f91096a22ba53faec5bd1146936bee3 (patch)
tree0f08814f8dd2a14400c3c9870c8ee7355d2bb925
parent7e2cac5292c0ebac0bf33c8bd6f8d678169930c0 (diff)
parente2d7c5dfb362736bde27db9a973310a15fd90c41 (diff)
Merge pull request #207 from t6/patch-sndio-oss
Prefer sndio backend over OSS when both are enabled
-rw-r--r--Alc/ALc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 2e9dc710..26219752 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -75,15 +75,15 @@ static struct BackendInfo BackendList[] = {
#ifdef HAVE_COREAUDIO
{ "core", ALCcoreAudioBackendFactory_getFactory },
#endif
-#ifdef HAVE_OSS
- { "oss", ALCossBackendFactory_getFactory },
-#endif
#ifdef HAVE_SOLARIS
{ "solaris", ALCsolarisBackendFactory_getFactory },
#endif
#ifdef HAVE_SNDIO
{ "sndio", ALCsndioBackendFactory_getFactory },
#endif
+#ifdef HAVE_OSS
+ { "oss", ALCossBackendFactory_getFactory },
+#endif
#ifdef HAVE_QSA
{ "qsa", ALCqsaBackendFactory_getFactory },
#endif