# HG changeset patch # User Ryan C. Gordon # Date 1000888214 0 # Node ID d4ac6ce1360e782f217aa3c73511c3bac1ab80cb # Parent 734e5d75acec636fe3bf6dab1ee9d08566156411 Added WAV entries. diff -r 734e5d75acec -r d4ac6ce1360e SDL_sound.c --- 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