Mercurial > sdl-ios-xcode
comparison src/audio/mint/SDL_mintaudio_mcsn.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 |
---|---|
169 this->CloseAudio = Mint_CloseAudio; | 169 this->CloseAudio = Mint_CloseAudio; |
170 this->LockAudio = Mint_LockAudio; | 170 this->LockAudio = Mint_LockAudio; |
171 this->UnlockAudio = Mint_UnlockAudio; | 171 this->UnlockAudio = Mint_UnlockAudio; |
172 this->free = Audio_DeleteDevice; | 172 this->free = Audio_DeleteDevice; |
173 | 173 |
174 /* Uses interrupt driven audio, without thread */ | |
175 #if SDL_THREADS_DISABLED | |
176 this->SkipMixerLock = 1; | |
177 #endif | |
178 | |
174 return this; | 179 return this; |
175 } | 180 } |
176 | 181 |
177 AudioBootStrap MINTAUDIO_MCSN_bootstrap = { | 182 AudioBootStrap MINTAUDIO_MCSN_bootstrap = { |
178 MINT_AUDIO_DRIVER_NAME, "MiNT MCSN audio driver", | 183 MINT_AUDIO_DRIVER_NAME, "MiNT MCSN audio driver", |