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-10-17 13:01:37 +0400
committerJoerg Mueller <nexyon@gmail.com>2010-10-17 13:01:37 +0400
commitd6d1f3cb68f59566fbfa0f23ccaaa4b84a073247 (patch)
tree732a4dd4a7d79fdef88b4db0b7375c70ee5a1844 /source/blender/makesrna/intern/rna_sound.c
parent856389eac7705b857ba50f0c3e3ee9d08639177e (diff)
Reverting Cam's audio code changes from revision 32517. Part of it has been reverted by Nathan already. Cam: next time please check, why a parameter is unused before you remove it!
Diffstat (limited to 'source/blender/makesrna/intern/rna_sound.c')
-rw-r--r--source/blender/makesrna/intern/rna_sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_sound.c b/source/blender/makesrna/intern/rna_sound.c
index 0c217837226..674fbbad9c6 100644
--- a/source/blender/makesrna/intern/rna_sound.c
+++ b/source/blender/makesrna/intern/rna_sound.c
@@ -38,7 +38,7 @@
static void rna_Sound_filepath_update(Main *bmain, Scene *scene, PointerRNA *ptr)
{
- sound_load((bSound*)ptr->data);
+ sound_load(bmain, (bSound*)ptr->data);
}
static int rna_Sound_caching_get(PointerRNA *ptr)