I’m getting ready to release new versions of the SDL libraries.
If you’re feeling experimental, I’d like to hear if the new versions
work or if there are any new (or old) bugs in them.
I’m getting ready to release new versions of the SDL libraries.
Oh dear, now I’m getting all worried that the last SDL_mixer patch I
sent you was wrong.
In that patch, I suggested that mixer.c’s should use this to recognize
a WAV file:
switch (magic) {
case WAVE:
case RIFF: <-- This is the line I added
loaded = SDL_LoadWAV_RW( ... )
As I understand it now (I didn’t understand it then), RIFF is the
magic number and WAVE is just the name of one of the WAV file’s
chunks. So the WAVE case should be removed.