Skip to content

Commit

Permalink
Added WAV entries.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 19, 2001
1 parent 7baf4ce commit 81346cf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions SDL_sound.c
Expand Up @@ -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
Expand All @@ -62,6 +66,10 @@ static const Sound_DecoderFunctions *decoderFuncs[] =
&__Sound_DecoderFunctions_MP3,
#endif

#if (defined SOUND_SUPPORTS_WAV)
&__Sound_DecoderFunctions_WAV,
#endif

#if (defined SOUND_SUPPORTS_VOC)
&__Sound_DecoderFunctions_VOC,
#endif
Expand Down

0 comments on commit 81346cf

Please sign in to comment.