Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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
  • Loading branch information
skidau committed Jan 15, 2013
1 parent 0a4272c commit 799b032
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/AudioCommon/Src/AudioCommon.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit 799b032

Please sign in to comment.