aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorTobias Kortkamp <[email protected]>2018-06-22 14:36:33 +0200
committerTobias Kortkamp <[email protected]>2018-06-22 14:36:33 +0200
commite2d7c5dfb362736bde27db9a973310a15fd90c41 (patch)
tree0f08814f8dd2a14400c3c9870c8ee7355d2bb925 /Alc
parent7e2cac5292c0ebac0bf33c8bd6f8d678169930c0 (diff)
Prefer sndio over OSS when both are enabled
Signed-off-by: Tobias Kortkamp <[email protected]>
Diffstat (limited to 'Alc')
-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