[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [46109] trunk/blender/intern/smoke/intern/ smoke_API.cpp: Fix compile error with msvc

Daniel Genrich daniel.genrich at gmx.net
Mon Apr 30 13:27:07 CEST 2012


Revision: 46109
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=46109
Author:   genscher
Date:     2012-04-30 11:27:06 +0000 (Mon, 30 Apr 2012)
Log Message:
-----------
Fix compile error with msvc

Modified Paths:
--------------
    trunk/blender/intern/smoke/intern/smoke_API.cpp

Modified: trunk/blender/intern/smoke/intern/smoke_API.cpp
===================================================================
--- trunk/blender/intern/smoke/intern/smoke_API.cpp	2012-04-30 11:08:53 UTC (rev 46108)
+++ trunk/blender/intern/smoke/intern/smoke_API.cpp	2012-04-30 11:27:06 UTC (rev 46109)
@@ -276,7 +276,7 @@
 	return fluid->_obstacles;
 }
 
-extern "C" void smoke_get_ob_velocity(struct FLUID_3D *fluid, float **x, float **y, float **z)
+extern "C" void smoke_get_ob_velocity(FLUID_3D *fluid, float **x, float **y, float **z)
 {
 	*x = fluid->_xVelocityOb;
 	*y = fluid->_yVelocityOb;




More information about the Bf-blender-cvs mailing list