From d5adaed9d84317aff546c71c28a338944a68a770 Mon Sep 17 00:00:00 2001 From: "Diogo Franco (Kovensky)" Date: Sat, 20 Jul 2013 14:13:39 -0300 Subject: ao_wasapi0: Rename to ao_wasapi Nobody knows what the 0 was for. There's no "WASAPI version 0". Just take it out. --- 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 6227891d57..d6cebb2d0d 100644 --- a/audio/out/ao.c +++ b/audio/out/ao.c @@ -44,7 +44,7 @@ extern const struct ao_driver audio_out_openal; extern const struct ao_driver audio_out_null; extern const struct ao_driver audio_out_alsa; extern const struct ao_driver audio_out_dsound; -extern const struct ao_driver audio_out_wasapi0; +extern const struct ao_driver audio_out_wasapi; extern const struct ao_driver audio_out_pcm; extern const struct ao_driver audio_out_pss; extern const struct ao_driver audio_out_lavc; @@ -68,8 +68,8 @@ static const struct ao_driver * const audio_out_drivers[] = { #ifdef CONFIG_DSOUND &audio_out_dsound, #endif -#ifdef CONFIG_WASAPI0 - &audio_out_wasapi0, +#ifdef CONFIG_WASAPI + &audio_out_wasapi, #endif #ifdef CONFIG_PORTAUDIO &audio_out_portaudio, -- cgit v1.2.3