Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2015-04-09 17:17:51 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-04-09 17:17:51 +0300
commit4cadbb03a8e4f6c6e59b3d2e3b48c6376e9b385b (patch)
treeb342e284c4c18a8451ba011767cae58218d6459e /source/blender/blenkernel/intern/mesh_mapping.c
parent5197aa04c6bd0197b82c0266eb291ac185c4eeea (diff)
Seriously... Fix building!
Diffstat (limited to 'source/blender/blenkernel/intern/mesh_mapping.c')
-rw-r--r--source/blender/blenkernel/intern/mesh_mapping.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/mesh_mapping.c b/source/blender/blenkernel/intern/mesh_mapping.c
index 974e8118b15..ebdbd3aac8a 100644
--- a/source/blender/blenkernel/intern/mesh_mapping.c
+++ b/source/blender/blenkernel/intern/mesh_mapping.c
@@ -63,10 +63,11 @@ UvVertMap *BKE_mesh_uv_vert_map_create(struct MPoly *mpoly, struct MLoop *mloop,
unsigned int a;
int i, totuv, nverts;
- totuv = 0;
bool *winding;
BLI_buffer_declare_static(vec2f, tf_uv_buf, BLI_BUFFER_NOP, 32);
+ totuv = 0;
+
/* generate UvMapVert array */
mp = mpoly;
for (a = 0; a < totpoly; a++, mp++)