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.
This commit is contained in:
wm4 2014-11-17 14:06:42 +01:00
parent 313f1954c5
commit 8b2798cb3e
1 changed files with 3 additions and 3 deletions

View File

@ -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