comparison ALmixer.c @ 34:7709c2145435

Fixed for omitted return value.
author Eric Wing <ewing@anscamobile.com>
date Mon, 04 Apr 2011 15:57:22 -0700
parents 28cf14726606
children 76a881923cfc
comparison
equal deleted inserted replaced
33:28cf14726606 34:7709c2145435
8504 Sound_Sample* sample = NULL; 8504 Sound_Sample* sample = NULL;
8505 Sound_AudioInfo sound_desired; 8505 Sound_AudioInfo sound_desired;
8506 8506
8507 if(AL_FALSE == ALmixer_Initialized) 8507 if(AL_FALSE == ALmixer_Initialized)
8508 { 8508 {
8509 return; 8509 return NULL;
8510 } 8510 }
8511 8511
8512 /* Rather than copying the data from struct to struct, I could just 8512 /* Rather than copying the data from struct to struct, I could just
8513 * cast the thing since the structs are meant to be identical. 8513 * cast the thing since the structs are meant to be identical.
8514 * But if SDL_sound changes it's implementation, bad things 8514 * But if SDL_sound changes it's implementation, bad things