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:
authorJörg Müller <nexyon@gmail.com>2015-04-21 16:20:19 +0300
committerJörg Müller <nexyon@gmail.com>2015-07-28 15:01:52 +0300
commitf700c1f3a826ad7d2576822779f676a9b16fde7a (patch)
tree80ba565215d24aab36d1cc027a227845aca66fed /intern/audaspace
parent009bb9e5c9fb6542193e6a4250643420a7016726 (diff)
Audaspace: name fixes and external library update.
Diffstat (limited to 'intern/audaspace')
-rw-r--r--intern/audaspace/intern/AUD_PyInit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/audaspace/intern/AUD_PyInit.cpp b/intern/audaspace/intern/AUD_PyInit.cpp
index 2575ec7daa1..5e89d88c68f 100644
--- a/intern/audaspace/intern/AUD_PyInit.cpp
+++ b/intern/audaspace/intern/AUD_PyInit.cpp
@@ -33,7 +33,7 @@
#include <audaspace/python/PyAPI.h>
extern "C" {
-extern void *sound_get_factory(void *sound);
+extern void *BKE_sound_get_factory(void *sound);
}
static PyObject *AUD_getSoundFromPointer(PyObject *self, PyObject *args)
@@ -42,7 +42,7 @@ static PyObject *AUD_getSoundFromPointer(PyObject *self, PyObject *args)
if (PyArg_Parse(args, "l:_sound_from_pointer", &lptr)) {
if (lptr) {
- AUD_Sound* sound = sound_get_factory((void *) lptr);
+ AUD_Sound* sound = BKE_sound_get_factory((void *) lptr);
if (sound) {
Sound *obj = (Sound *)Sound_empty();