[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [46738] branches/soc-2011-tomato/source/ blender/makesrna/intern/rna_sequencer_api.c: fix for building without aud

Campbell Barton ideasman42 at gmail.com
Thu May 17 17:01:51 CEST 2012


Revision: 46738
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=46738
Author:   campbellbarton
Date:     2012-05-17 15:01:51 +0000 (Thu, 17 May 2012)
Log Message:
-----------
fix for building without aud

Modified Paths:
--------------
    branches/soc-2011-tomato/source/blender/makesrna/intern/rna_sequencer_api.c

Modified: branches/soc-2011-tomato/source/blender/makesrna/intern/rna_sequencer_api.c
===================================================================
--- branches/soc-2011-tomato/source/blender/makesrna/intern/rna_sequencer_api.c	2012-05-17 14:59:11 UTC (rev 46737)
+++ branches/soc-2011-tomato/source/blender/makesrna/intern/rna_sequencer_api.c	2012-05-17 15:01:51 UTC (rev 46738)
@@ -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