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:
authorTon Roosendaal <ton@blender.org>2004-11-11 19:00:43 +0300
committerTon Roosendaal <ton@blender.org>2004-11-11 19:00:43 +0300
commit5f5445ddbe9fa80b57ec0628739a7fa0a8fb3e58 (patch)
tree33a42a997179c9313ba89a0afec5ccdfff4925fb
parent29ca2ad98998a9f30be1027652f2068b92410261 (diff)
Tsk tsk! Using a short to count vertices amount in Mirror menu doesnt
work when there are a lot, eh :)
-rw-r--r--source/blender/src/editobject.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/src/editobject.c b/source/blender/src/editobject.c
index bd499e912ab..0e2c112f311 100644
--- a/source/blender/src/editobject.c
+++ b/source/blender/src/editobject.c
@@ -7931,7 +7931,8 @@ void make_displists_by_obdata(void *obdata) {
void mirror_edit(short mode)
{
- short axis, a;
+ int a;
+ short axis;
float mat[3][3], imat[3][3], min[3], max[3];
TransVert *tv;
@@ -8062,7 +8063,8 @@ void mirror_edit(short mode)
void mirror_object(short mode)
{
TransOb *tob;
- short a, axis;
+ int a;
+ short axis;
float off[3], imat[3][3];
setbaseflags_for_editing('s');