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>2014-11-12 14:33:28 +0300
committerJörg Müller <nexyon@gmail.com>2015-07-28 15:01:52 +0300
commit8528d76dadd03680ba4a7b24ed8516bad4501b5f (patch)
treec5b492912d7ffd7bbd069891625d09d28bb19c13 /intern/audaspace
parent733073550f61cf4fbbe21aab33e9271915325109 (diff)
Audaspace: external audaspace library update.
Diffstat (limited to 'intern/audaspace')
-rw-r--r--intern/audaspace/intern/AUD_PyInit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/audaspace/intern/AUD_PyInit.cpp b/intern/audaspace/intern/AUD_PyInit.cpp
index 8802f39929c..2575ec7daa1 100644
--- a/intern/audaspace/intern/AUD_PyInit.cpp
+++ b/intern/audaspace/intern/AUD_PyInit.cpp
@@ -47,7 +47,7 @@ static PyObject *AUD_getSoundFromPointer(PyObject *self, PyObject *args)
if (sound) {
Sound *obj = (Sound *)Sound_empty();
if (obj) {
- obj->sound = AUD_copy(sound);
+ obj->sound = AUD_Sound_copy(sound);
return (PyObject *) obj;
}
}