# HG changeset patch # User Ryan C. Gordon # Date 1157138186 0 # Node ID 575d5c9d4db828bca8d89216ac9c7d64bf422a6c # Parent b2b7154ce01638ba307e96c16cf603b53d5ef527 Continuing my quest to replace all the bitwise operations on SDL_AudioFormats with the new 1.3 macros... diff -r b2b7154ce016 -r 575d5c9d4db8 src/audio/SDL_wave.c --- a/src/audio/SDL_wave.c Fri Sep 01 18:07:41 2006 +0000 +++ b/src/audio/SDL_wave.c Fri Sep 01 19:16:26 2006 +0000 @@ -582,7 +582,7 @@ } /* Don't return a buffer that isn't a multiple of samplesize */ - samplesize = ((spec->format & 0xFF) / 8) * spec->channels; + samplesize = ((SDL_AUDIO_BITSIZE(spec->format)) / 8) * spec->channels; *audio_len &= ~(samplesize - 1); done: