diff options
author | Tobias Kortkamp <[email protected]> | 2018-06-22 14:36:33 +0200 |
---|---|---|
committer | Tobias Kortkamp <[email protected]> | 2018-06-22 14:36:33 +0200 |
commit | e2d7c5dfb362736bde27db9a973310a15fd90c41 (patch) | |
tree | 0f08814f8dd2a14400c3c9870c8ee7355d2bb925 /Alc | |
parent | 7e2cac5292c0ebac0bf33c8bd6f8d678169930c0 (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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |