Commit 30768ab2 authored by Ryan C. Gordon's avatar Ryan C. Gordon

Audio driver priority: favor PulseAudio and ALSA over OSS.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403401
parent 0e24b20c
...@@ -79,15 +79,15 @@ static AudioBootStrap *bootstrap[] = { ...@@ -79,15 +79,15 @@ static AudioBootStrap *bootstrap[] = {
#if SDL_AUDIO_DRIVER_BSD #if SDL_AUDIO_DRIVER_BSD
&BSD_AUDIO_bootstrap, &BSD_AUDIO_bootstrap,
#endif #endif
#if SDL_AUDIO_DRIVER_OSS #if SDL_AUDIO_DRIVER_PULSEAUDIO
&DSP_bootstrap, &PULSEAUDIO_bootstrap,
&DMA_bootstrap,
#endif #endif
#if SDL_AUDIO_DRIVER_ALSA #if SDL_AUDIO_DRIVER_ALSA
&ALSA_bootstrap, &ALSA_bootstrap,
#endif #endif
#if SDL_AUDIO_DRIVER_PULSEAUDIO #if SDL_AUDIO_DRIVER_OSS
&PULSEAUDIO_bootstrap, &DSP_bootstrap,
&DMA_bootstrap,
#endif #endif
#if SDL_AUDIO_DRIVER_QNXNTO #if SDL_AUDIO_DRIVER_QNXNTO
&QNXNTOAUDIO_bootstrap, &QNXNTOAUDIO_bootstrap,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment