From b8cb86047106701d9c3bee63075c3664ad9bd936 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 1 Jun 2014 19:00:44 +0200 Subject: audio: prefer dsound over wasapi ao_wasapi has too many subtle failures that were reported, but there's nobody to fix them. ao_dsound seems to be more robust; so prefer it. --- audio/out/ao.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'audio/out') diff --git a/audio/out/ao.c b/audio/out/ao.c index 358762b73c..378197bcb3 100644 --- a/audio/out/ao.c +++ b/audio/out/ao.c @@ -66,15 +66,15 @@ static const struct ao_driver * const audio_out_drivers[] = { #if HAVE_ALSA &audio_out_alsa, #endif +#if HAVE_DSOUND + &audio_out_dsound, +#endif #if HAVE_WASAPI &audio_out_wasapi, #endif #if HAVE_OSS_AUDIO &audio_out_oss, #endif -#if HAVE_DSOUND - &audio_out_dsound, -#endif #if HAVE_PORTAUDIO &audio_out_portaudio, #endif -- cgit v1.2.3