This is still a work in progress (although I haven't worked on it in over a month).

This commit is contained in:
Steve Checkoway
2006-07-17 00:44:38 +00:00
parent bd7422ef6e
commit b1d08d1f8b
2 changed files with 4 additions and 0 deletions
@@ -11,6 +11,7 @@
#if defined(MACOSX)
#include "RageSoundDriver_CA.h"
#include "RageSoundDriver_AU.h"
#endif
#ifdef HAVE_DIRECTX
+3
View File
@@ -262,6 +262,9 @@ RageSoundDriver *MakeRageSoundDriver( const RString &drivers )
#ifdef USE_RAGE_SOUND_CA
if( !DriversToTry[i].CompareNoCase("CoreAudio") ) ret = new RageSound_CA;
#endif
#ifdef USE_RAGE_SOUND_AU
if( !DriversToTry[i].CompareNoCase("AudioUnit") ) ret = new RageSound_AU;
#endif
#ifdef USE_RAGE_SOUND_DSOUND
if( !DriversToTry[i].CompareNoCase("DirectSound") ) ret = new RageSound_DSound;
#endif