comparison src/audio/mint/SDL_mintaudio_xbios.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 adf732f1f016
children c8b3d3d13ed1
comparison
equal deleted inserted replaced
3795:589bc3d060cd 3796:b19680c84cdf
152 this->OpenAudio = Mint_OpenAudio; 152 this->OpenAudio = Mint_OpenAudio;
153 this->CloseAudio = Mint_CloseAudio; 153 this->CloseAudio = Mint_CloseAudio;
154 this->LockAudio = Mint_LockAudio; 154 this->LockAudio = Mint_LockAudio;
155 this->UnlockAudio = Mint_UnlockAudio; 155 this->UnlockAudio = Mint_UnlockAudio;
156 this->free = Audio_DeleteDevice; 156 this->free = Audio_DeleteDevice;
157
158 /* Uses interrupt driven audio, without thread */
159 #if SDL_THREADS_DISABLED
160 this->SkipMixerLock = 1;
161 #endif
157 162
158 return this; 163 return this;
159 } 164 }
160 165
161 AudioBootStrap MINTAUDIO_XBIOS_bootstrap = { 166 AudioBootStrap MINTAUDIO_XBIOS_bootstrap = {