[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [46737] trunk/blender/source/blender/ makesrna/intern/rna_sequencer_api.c: fix for building without AUD

Campbell Barton ideasman42 at gmail.com
Thu May 17 16:59:11 CEST 2012


Revision: 46737
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=46737
Author:   campbellbarton
Date:     2012-05-17 14:59:11 +0000 (Thu, 17 May 2012)
Log Message:
-----------
fix for building without AUD

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_sequencer_api.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_sequencer_api.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_sequencer_api.c	2012-05-17 14:55:01 UTC (rev 46736)
+++ trunk/blender/source/blender/makesrna/intern/rna_sequencer_api.c	2012-05-17 14:59:11 UTC (rev 46737)
@@ -213,8 +213,8 @@
 	return seq;
 }
 #else /* WITH_AUDASPACE */
-static Sequence *rna_Sequences_new_sound(ID *UNUSED(id), Editing *UNUSED(ed), bMain *UNUSED(main), ReportList *UNUSED(reports),
-                                         const char *UNUSED(name), bSound *UNUSED(sound), int UNUSED(channel), int UNUSED(start_frame))
+static Sequence *rna_Sequences_new_sound(ID *UNUSED(id), Editing *UNUSED(ed), Main *UNUSED(bmain), ReportList *reports,
+                                         const char *UNUSED(name), const char *UNUSED(file), int UNUSED(channel), int UNUSED(start_frame))
 {
 	BKE_report(reports, RPT_ERROR, "Blender compiled without Audaspace support.");
 	return NULL;




More information about the Bf-blender-cvs mailing list