[Bf-blender-cvs] [b5f3303] soc-2016-uv_tools: Fixing a typo which caused compile error

Phil Gosch noreply at git.blender.org
Tue Jul 5 10:06:53 CEST 2016


Commit: b5f330378c9d4573fe8bb635bb18ff126aac2493
Author: Phil Gosch
Date:   Tue Jul 5 10:06:22 2016 +0200
Branches: soc-2016-uv_tools
https://developer.blender.org/rBb5f330378c9d4573fe8bb635bb18ff126aac2493

Fixing a typo which caused compile error

===================================================================

M	source/blender/editors/uvedit/uvedit_parametrizer.c

===================================================================

diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.c b/source/blender/editors/uvedit/uvedit_parametrizer.c
index 7835bb6..bcf7112 100644
--- a/source/blender/editors/uvedit/uvedit_parametrizer.c
+++ b/source/blender/editors/uvedit/uvedit_parametrizer.c
@@ -1502,7 +1502,7 @@ static bool p_charts_intersect(PChart* a, PChart *b)
 	/* Check edges for intersections */
 	for (e1 = a->edges; e1; e1 = e1->nextlink) {
 		for (e2 = b->edges; e2; e2 = e2->nextlink) {
-			if (p_intersect_line_segaments_2d(e1->vert->uv,
+			if (p_intersect_line_segments_2d(e1->vert->uv,
 											 e1->nextlink->vert->uv,
 											 e2->vert->uv,
 											 e2->nextlink->vert->uv)) {




More information about the Bf-blender-cvs mailing list