[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [58967] branches/ soc-2013-meshdata_transfer/source/blender/bmesh/tools/bmesh_data_transfer.c : Vertex Color transfer through projection: missing equal sign in iterating the layers

Walid Shouman eng.walidshouman at gmail.com
Tue Aug 6 15:41:05 CEST 2013


Revision: 58967
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=58967
Author:   walid
Date:     2013-08-06 13:41:05 +0000 (Tue, 06 Aug 2013)
Log Message:
-----------
Vertex Color transfer through projection: missing equal sign in iterating the layers

Modified Paths:
--------------
    branches/soc-2013-meshdata_transfer/source/blender/bmesh/tools/bmesh_data_transfer.c

Modified: branches/soc-2013-meshdata_transfer/source/blender/bmesh/tools/bmesh_data_transfer.c
===================================================================
--- branches/soc-2013-meshdata_transfer/source/blender/bmesh/tools/bmesh_data_transfer.c	2013-08-06 11:21:47 UTC (rev 58966)
+++ branches/soc-2013-meshdata_transfer/source/blender/bmesh/tools/bmesh_data_transfer.c	2013-08-06 13:41:05 UTC (rev 58967)
@@ -2284,7 +2284,7 @@
 	src_lay_end = replace_info.src_lay_end;
 	dst_lay_start = replace_info.dst_lay_start;
 
-	for (src_lay_iter = src_lay_start, dst_lay_iter = dst_lay_start; src_lay_iter < src_lay_end;
+	for (src_lay_iter = src_lay_start, dst_lay_iter = dst_lay_start; src_lay_iter <= src_lay_end;
 		src_lay_iter++, dst_lay_iter++) {
 
 		//fix the layer index of the source & dest




More information about the Bf-blender-cvs mailing list