[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [12911] trunk/blender/source/blender/ python/api2_5x/sceneRender.c: Python API

Ken Hughes khughes at pacific.edu
Sun Dec 16 20:10:30 CET 2007


Revision: 12911
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=12911
Author:   khughes
Date:     2007-12-16 20:10:29 +0100 (Sun, 16 Dec 2007)

Log Message:
-----------
Python API
----------
Fix broken compile for WITH_BF_QUICKTIME=True and another warning.

Modified Paths:
--------------
    trunk/blender/source/blender/python/api2_5x/sceneRender.c

Modified: trunk/blender/source/blender/python/api2_5x/sceneRender.c
===================================================================
--- trunk/blender/source/blender/python/api2_5x/sceneRender.c	2007-12-16 17:54:34 UTC (rev 12910)
+++ trunk/blender/source/blender/python/api2_5x/sceneRender.c	2007-12-16 19:10:29 UTC (rev 12911)
@@ -39,6 +39,7 @@
 #include "BKE_global.h"
 #include "BKE_screen.h"
 #include "BKE_scene.h"
+#include "BKE_ipo.h"
 
 #include "BIF_drawscene.h"
 #include "BIF_renderwin.h"
@@ -487,7 +488,7 @@
 	if( r->imtype == R_QUICKTIME ) {
 
 		strcpy( file, r->pic );
-		BLI_convertstringcode( file, (char *) self->scene,
+		BLI_convertstringcode( file, (char *) self->bpysce->scene,
 				       r->cfra );
 		BLI_make_existing_file( file );
 		if( BLI_strcasecmp( file + strlen( file ) - 4, ".mov" ) ) {





More information about the Bf-blender-cvs mailing list