Set Windows Audio Driver to OpenAL?

BlitzMax Forums/BlitzMax Beginners Area/Set Windows Audio Driver to OpenAL?

Captain Wicker (crazy hillbilly)(Posted 2012) [#1]
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?


Zeke(Posted 2012) [#2]
EnableOpenALAudio() 'Adds OpenAL driver to AudioDrivers list
For Local a$=EachIn AudioDrivers()
	Print a
Next
SetAudioDriver("OpenAL")


Last edited 2012