Mercurial > SDL_sound_CoreAudio
diff SDL_sound.c @ 20:d4ac6ce1360e
Added WAV entries.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 19 Sep 2001 08:30:14 +0000 |
parents | cc2c32349380 |
children | ddc3614c9042 |
line wrap: on
line diff
--- a/SDL_sound.c Wed Sep 19 08:29:54 2001 +0000 +++ b/SDL_sound.c Wed Sep 19 08:30:14 2001 +0000 @@ -48,6 +48,10 @@ extern const Sound_DecoderFunctions __Sound_DecoderFunctions_MP3; #endif +#if (defined SOUND_SUPPORTS_WAV) +extern const Sound_DecoderFunctions __Sound_DecoderFunctions_WAV; +#endif + #if (defined SOUND_SUPPORTS_VOC) extern const Sound_DecoderFunctions __Sound_DecoderFunctions_VOC; #endif @@ -62,6 +66,10 @@ &__Sound_DecoderFunctions_MP3, #endif +#if (defined SOUND_SUPPORTS_WAV) + &__Sound_DecoderFunctions_WAV, +#endif + #if (defined SOUND_SUPPORTS_VOC) &__Sound_DecoderFunctions_VOC, #endif