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:
authorNicholas Bishop <nicholasbishop@gmail.com>2007-03-15 23:19:34 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2007-03-15 23:19:34 +0300
commite4881c25c5a3f09e42245296b8ac8d6387e82c5a (patch)
treeae4483221aaad2c90a69aac57ec23491354093cd /source/blender/src/sculptmode.c
parent2be1b26a1a96dc4a12c1f1d3f97e83b57825c1b9 (diff)
Fixed array declaration in sculptmode.c
Diffstat (limited to 'source/blender/src/sculptmode.c')
-rw-r--r--source/blender/src/sculptmode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/sculptmode.c b/source/blender/src/sculptmode.c
index ce46b631510..5091f8e9c7a 100644
--- a/source/blender/src/sculptmode.c
+++ b/source/blender/src/sculptmode.c
@@ -660,7 +660,7 @@ void do_inflate_brush(const EditData *e, const ListBase *active_verts)
void calc_flatten_center(Mesh *me, ActiveData *node, const EditData *e, float co[3])
{
const int FTOT = 10;
- ActiveData *outer[FTOT];
+ ActiveData *outer[10];
int i;
for(i = 0; i < FTOT; ++i)