comparison src/audio/mint/SDL_mintaudio_gsxb.c @ 3796:b19680c84cdf SDL-ryan-multiple-audio-device

Bunch of 1.3 audio cleanups to remove FIXMEs, get driver specific crap out of the core and into the drivers where it belongs, and push generic responsibilities out of the drivers and into the core where they belong.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 04 Oct 2006 19:54:23 +0000
parents 8d5d119b1640
children c8b3d3d13ed1
comparison
equal deleted inserted replaced
3795:589bc3d060cd 3796:b19680c84cdf
153 this->OpenAudio = Mint_OpenAudio; 153 this->OpenAudio = Mint_OpenAudio;
154 this->CloseAudio = Mint_CloseAudio; 154 this->CloseAudio = Mint_CloseAudio;
155 this->LockAudio = Mint_LockAudio; 155 this->LockAudio = Mint_LockAudio;
156 this->UnlockAudio = Mint_UnlockAudio; 156 this->UnlockAudio = Mint_UnlockAudio;
157 this->free = Audio_DeleteDevice; 157 this->free = Audio_DeleteDevice;
158
159 /* Uses interrupt driven audio, without thread */
160 #if SDL_THREADS_DISABLED
161 this->SkipMixerLock = 1;
162 #endif
158 163
159 return this; 164 return this;
160 } 165 }
161 166
162 AudioBootStrap MINTAUDIO_GSXB_bootstrap = { 167 AudioBootStrap MINTAUDIO_GSXB_bootstrap = {