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:
authorJoilnen Leite <joilnen.leite@gmail.com>2006-06-24 11:43:13 +0400
committerJoilnen Leite <joilnen.leite@gmail.com>2006-06-24 11:43:13 +0400
commitaeddc2ac0fc21704a781451b43ade4b562e00b80 (patch)
tree1d5f0be92b64407d4a3defef360ca26d3e6700b4 /source/blender/src/editmesh_mods.c
parent4d061263a9c5955c9d5a6a723dd76cc1cae75554 (diff)
fix for report 4440 in the bug tracker
.
Diffstat (limited to 'source/blender/src/editmesh_mods.c')
-rw-r--r--source/blender/src/editmesh_mods.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editmesh_mods.c b/source/blender/src/editmesh_mods.c
index 4f62a278c77..f275b85dd73 100644
--- a/source/blender/src/editmesh_mods.c
+++ b/source/blender/src/editmesh_mods.c
@@ -2375,7 +2375,7 @@ void selectrandom_mesh(void) /* randomly selects a user-set % of vertices/edges/
EditVert *eve;
EditEdge *eed;
EditFace *efa;
- short randfac = 50;
+ static short randfac = 50;
if(G.obedit==NULL || (G.obedit->lay & G.vd->lay)==0) return;