Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Mueller <nexyon@gmail.com>2010-01-18 23:11:31 +0300
committerJoerg Mueller <nexyon@gmail.com>2010-01-18 23:11:31 +0300
commitcd068e5530bee6351dd930a3a458f1f939936a6e (patch)
treec76e36cc732a6e302214a470693dded4a900b535 /intern/audaspace/OpenAL
parent161ae41c6d3d63f4b444f83bd6e64f6cbb214983 (diff)
Removed workaround from weekend. See mailing list for details.
Diffstat (limited to 'intern/audaspace/OpenAL')
-rw-r--r--intern/audaspace/OpenAL/AUD_OpenALDevice.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/intern/audaspace/OpenAL/AUD_OpenALDevice.cpp b/intern/audaspace/OpenAL/AUD_OpenALDevice.cpp
index 087c7849a2c..0b3e86eda56 100644
--- a/intern/audaspace/OpenAL/AUD_OpenALDevice.cpp
+++ b/intern/audaspace/OpenAL/AUD_OpenALDevice.cpp
@@ -284,9 +284,7 @@ AUD_OpenALDevice::AUD_OpenALDevice(AUD_DeviceSpecs specs, int buffersize)
}
#endif
- m_device = alcOpenDevice("ALSA Software");
- if(m_device == NULL)
- m_device = alcOpenDevice(NULL);
+ m_device = alcOpenDevice(NULL);
if(!m_device)
AUD_THROW(AUD_ERROR_OPENAL);