Readd the OpenAL option.

The OpenAL backend requires OpenAL Soft to be installed: http://kcat.strangesoft.net/openal.html

You may need to rename soft_oal.dll to OpenAL32.dll in the Dolphin folder.

Windows users may also need to update their OpenAL drivers by downloading them from

http://connect.creativelabs.com/openal/Downloads/oalinst.zip
This commit is contained in:
skidau 2013-01-15 23:14:11 +11:00
parent 0a4272c96b
commit 799b032b98

View file

@ -110,6 +110,8 @@ namespace AudioCommon
backends.push_back(BACKEND_COREAUDIO);
if (PulseAudio::isValid())
backends.push_back(BACKEND_PULSEAUDIO);
if (OpenALStream::isValid())
backends.push_back(BACKEND_OPENAL);
return backends;
}