[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33225] trunk/blender/source/blender/ render/intern/source/voxeldata.c: Darn, left debug prints in last commit

Matt Ebb matt at mke3.net
Mon Nov 22 00:40:15 CET 2010


Revision: 33225
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33225
Author:   broken
Date:     2010-11-22 00:40:14 +0100 (Mon, 22 Nov 2010)

Log Message:
-----------
Darn, left debug prints in last commit

Modified Paths:
--------------
    trunk/blender/source/blender/render/intern/source/voxeldata.c

Modified: trunk/blender/source/blender/render/intern/source/voxeldata.c
===================================================================
--- trunk/blender/source/blender/render/intern/source/voxeldata.c	2010-11-21 23:36:29 UTC (rev 33224)
+++ trunk/blender/source/blender/render/intern/source/voxeldata.c	2010-11-21 23:40:14 UTC (rev 33225)
@@ -298,7 +298,7 @@
 			return;
 		case TEX_VD_BLENDERVOXEL:
 			BLI_path_abs(path, G.main->name);
-			if (!BLI_exists(path)) { printf("invalid voxel path %s \n", path); return; }
+			if (!BLI_exists(path)) return;
 			fp = fopen(path,"rb");
 			if (!fp) return;
 			
@@ -310,7 +310,7 @@
 			return;
 		case TEX_VD_RAW_8BIT:
 			BLI_path_abs(path, G.main->name);
-			if (!BLI_exists(path)) { printf("invalid voxel path %s \n", path); return; }
+			if (!BLI_exists(path)) return;
 			fp = fopen(path,"rb");
 			if (!fp) return;
 			





More information about the Bf-blender-cvs mailing list