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
path: root/intern
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2005-04-29 21:36:30 +0400
committerTon Roosendaal <ton@blender.org>2005-04-29 21:36:30 +0400
commitcc44c12b9f2e7f46655dd7cbdb3508e71acc51d7 (patch)
treebe3e9509b358c173a342c1ee0ac4a70a39040f11 /intern
parentc812d2ac20c351eb8aa4f1dbc8b9a468acda7e39 (diff)
Compile with NAN_NO_KETSJI kept giving me errors with OpenAL.
undefined reference to SND_OpenALDevice::SND_OpenALDevice I hacked c++ code in the dummy function wich worked! Now test it! :)
Diffstat (limited to 'intern')
-rw-r--r--intern/SoundSystem/dummy/SND_DummyDevice.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/intern/SoundSystem/dummy/SND_DummyDevice.cpp b/intern/SoundSystem/dummy/SND_DummyDevice.cpp
index 820c151377a..67608cc9944 100644
--- a/intern/SoundSystem/dummy/SND_DummyDevice.cpp
+++ b/intern/SoundSystem/dummy/SND_DummyDevice.cpp
@@ -45,7 +45,15 @@ SND_DummyDevice::SND_DummyDevice()
{
}
+class SND_OpenALDevice : public SND_AudioDevice
+{
+public:
+ SND_OpenALDevice();
+};
+SND_OpenALDevice::SND_OpenALDevice()
+{
+}
SND_DummyDevice::~SND_DummyDevice()
{