diff decoders/wav.c @ 149:1df5c106504e

Decoders can now list multiple file extensions.
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 01 Nov 2001 19:13:17 +0000
parents e46e31fdecfd
children bdbe09014724
line wrap: on
line diff
--- a/decoders/wav.c	Thu Nov 01 19:12:36 2001 +0000
+++ b/decoders/wav.c	Thu Nov 01 19:13:17 2001 +0000
@@ -50,10 +50,11 @@
 static void WAV_close(Sound_Sample *sample);
 static Uint32 WAV_read(Sound_Sample *sample);
 
+static const char *extensions_wav[] = { "WAV", NULL };
 const Sound_DecoderFunctions __Sound_DecoderFunctions_WAV =
 {
     {
-        "WAV",
+        extensions_wav,
         "Microsoft WAVE audio format",
         "Ryan C. Gordon <icculus@clutteredmind.org>",
         "http://www.icculus.org/SDL_sound/"