[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [50452] trunk/blender/source/blender/bmesh /operators/bmo_subdivide.c: fix for error in own recent commit

Campbell Barton ideasman42 at gmail.com
Thu Sep 6 13:02:27 CEST 2012


Revision: 50452
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=50452
Author:   campbellbarton
Date:     2012-09-06 11:02:27 +0000 (Thu, 06 Sep 2012)
Log Message:
-----------
fix for error in own recent commit

Modified Paths:
--------------
    trunk/blender/source/blender/bmesh/operators/bmo_subdivide.c

Modified: trunk/blender/source/blender/bmesh/operators/bmo_subdivide.c
===================================================================
--- trunk/blender/source/blender/bmesh/operators/bmo_subdivide.c	2012-09-06 10:37:00 UTC (rev 50451)
+++ trunk/blender/source/blender/bmesh/operators/bmo_subdivide.c	2012-09-06 11:02:27 UTC (rev 50452)
@@ -995,7 +995,7 @@
 					BMIter other_fiter;
 					BM_ITER_ELEM (other_loop, &other_fiter, loops[a]->v, BM_LOOPS_OF_VERT) {
 						if (other_loop->f != face) {
-							if (BM_vert_in_face(other_loop->f, loops[a]->v)) {
+							if (BM_vert_in_face(other_loop->f, loops[b]->v)) {
 								/* we assume that these verts are not making an edge in the face */
 								BLI_assert(other_loop->prev->v != loops[a]->v);
 								BLI_assert(other_loop->next->v != loops[a]->v);




More information about the Bf-blender-cvs mailing list