Mercurial > sdl-ios-xcode
comparison src/audio/mint/SDL_mintaudio_stfa.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 |
---|---|
148 this->CloseAudio = Mint_CloseAudio; | 148 this->CloseAudio = Mint_CloseAudio; |
149 this->LockAudio = Mint_LockAudio; | 149 this->LockAudio = Mint_LockAudio; |
150 this->UnlockAudio = Mint_UnlockAudio; | 150 this->UnlockAudio = Mint_UnlockAudio; |
151 this->free = Audio_DeleteDevice; | 151 this->free = Audio_DeleteDevice; |
152 | 152 |
153 /* Uses interrupt driven audio, without thread */ | |
154 #if SDL_THREADS_DISABLED | |
155 this->SkipMixerLock = 1; | |
156 #endif | |
157 | |
153 return this; | 158 return this; |
154 } | 159 } |
155 | 160 |
156 AudioBootStrap MINTAUDIO_STFA_bootstrap = { | 161 AudioBootStrap MINTAUDIO_STFA_bootstrap = { |
157 MINT_AUDIO_DRIVER_NAME, "MiNT STFA audio driver", | 162 MINT_AUDIO_DRIVER_NAME, "MiNT STFA audio driver", |