Set Windows Audio Driver to OpenAL?
BlitzMax Forums/BlitzMax Beginners Area/Set Windows Audio Driver to OpenAL?| 
 | ||
| Hi, I have OpenAL installed on my Windows Vista machine but how to get a list of the installed drivers to choose from and SetAudioDriver()? I am trying to get a list of audio drivers and allow the user to set the audio driver on application launch. How can I do this? | 
| 
 | ||
| 
EnableOpenALAudio() 'Adds OpenAL driver to AudioDrivers list
For Local a$=EachIn AudioDrivers()
	Print a
Next
SetAudioDriver("OpenAL")Last edited 2012 |