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:
authorJens Ole Wund <bjornmose@gmx.net>2010-02-18 02:04:30 +0300
committerJens Ole Wund <bjornmose@gmx.net>2010-02-18 02:04:30 +0300
commit65cac9ae1392f9eeb00cf2154e9c154e7104ce6b (patch)
tree65fe06fd282bb206476deca9a4621771dbd0e715 /source/blender/editors
parent04035b81b71b6973cfc6fbe60019095790366407 (diff)
fix for MS compliers
keep var declaration up in .c files
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/mesh/meshtools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/meshtools.c b/source/blender/editors/mesh/meshtools.c
index e345d743172..a56b6e47ad9 100644
--- a/source/blender/editors/mesh/meshtools.c
+++ b/source/blender/editors/mesh/meshtools.c
@@ -1035,7 +1035,6 @@ long mesh_mirrtopo_table(Object *ob, char mode)
MEdge *medge;
EditMesh *em= me->edit_mesh;
- mesh_topo_lookup_mode= ob->mode;
/* editmode*/
EditEdge *eed;
@@ -1046,6 +1045,7 @@ long mesh_mirrtopo_table(Object *ob, char mode)
MIRRHASH_TYPE *MirrTopoHash = NULL;
MIRRHASH_TYPE *MirrTopoHash_Prev = NULL;
MirrTopoPair *MirrTopoPairs;
+ mesh_topo_lookup_mode= ob->mode;
/* reallocate if needed */
if (mesh_topo_lookup) {