comparison src/audio/dmedia/SDL_irixaudio.c @ 3699:4160ba33b597

Removed test for "driver is valid, but doesn't see any audio devices." It was causing problems, and it really doesn't make sense to do it that way. Fixes Bugzilla #834.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 26 Jan 2010 06:01:33 +0000
parents f7b03b6838cb
children b530ef003506
comparison
equal deleted inserted replaced
3698:17376128fb56 3699:4160ba33b597
226 impl->WaitDevice = DSP_WaitDevice; 226 impl->WaitDevice = DSP_WaitDevice;
227 impl->GetDeviceBuf = DSP_GetDeviceBuf; 227 impl->GetDeviceBuf = DSP_GetDeviceBuf;
228 impl->CloseDevice = DSP_CloseDevice; 228 impl->CloseDevice = DSP_CloseDevice;
229 impl->OnlyHasDefaultOutputDevice = 1; /* !!! FIXME: not true, I think. */ 229 impl->OnlyHasDefaultOutputDevice = 1; /* !!! FIXME: not true, I think. */
230 230
231 return 1; 231 return 1; /* this audio target is available. */
232 } 232 }
233 233
234 AudioBootStrap IRIXAUDIO_bootstrap = { 234 AudioBootStrap IRIXAUDIO_bootstrap = {
235 "AL", "IRIX DMedia audio", IRIXAUDIO_Init, 0 235 "AL", "IRIX DMedia audio", IRIXAUDIO_Init, 0
236 }; 236 };