diff options
author | kcat <[email protected]> | 2018-06-22 11:49:00 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2018-06-22 11:49:00 -0700 |
commit | dc3fa3e51f91096a22ba53faec5bd1146936bee3 (patch) | |
tree | 0f08814f8dd2a14400c3c9870c8ee7355d2bb925 /Alc | |
parent | 7e2cac5292c0ebac0bf33c8bd6f8d678169930c0 (diff) | |
parent | e2d7c5dfb362736bde27db9a973310a15fd90c41 (diff) |
Merge pull request #207 from t6/patch-sndio-oss
Prefer sndio backend over OSS when both are enabled
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 |