comparison src/audio/dart/SDL_dart.c @ 3798:c8b3d3d13ed1 SDL-ryan-multiple-audio-device

Audio bootstraps can now specify that a driver is only to be used if explicitly requested (for things like the "disk" driver that is always available but you would never want to default to using). Trimmed out code that can be handled by stubs in the core. The "dummy" driver is pretty damned small now. :)
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 04 Oct 2006 21:27:53 +0000
parents b19680c84cdf
children da371472162f
comparison
equal deleted inserted replaced
3797:9dc81c6acaf5 3798:c8b3d3d13ed1
482 return this; 482 return this;
483 } 483 }
484 484
485 AudioBootStrap DART_bootstrap = { 485 AudioBootStrap DART_bootstrap = {
486 "dart", "OS/2 Direct Audio RouTines (DART)", 486 "dart", "OS/2 Direct Audio RouTines (DART)",
487 Audio_Available, Audio_CreateDevice 487 Audio_Available, Audio_CreateDevice, 0
488 }; 488 };
489 489
490 /* vi: set ts=4 sw=4 expandtab: */ 490 /* vi: set ts=4 sw=4 expandtab: */