changeset 20:d4ac6ce1360e

Added WAV entries.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 19 Sep 2001 08:30:14 +0000
parents 734e5d75acec
children d9b9d60cf9a9
files SDL_sound.c
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
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