From 8b2798cb3e956b3333b187b3e2b2be2be581b39f Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 17 Nov 2014 14:06:42 +0100 Subject: audio/out: switch back to wasapi as default on win32 dsound was set as default, because there were some hard to fix problems with wasapi. These problems were probably fixed now, so let's try with wasapi as default again. --- audio/out/ao.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'audio/out/ao.c') diff --git a/audio/out/ao.c b/audio/out/ao.c index b92a78ff26..4a09ec0615 100644 --- a/audio/out/ao.c +++ b/audio/out/ao.c @@ -64,12 +64,12 @@ 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_DSOUND + &audio_out_dsound, +#endif #if HAVE_OSS_AUDIO &audio_out_oss, #endif -- cgit v1.2.3