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:
authorStefan Gartner <stefang@aon.at>2002-12-07 23:57:50 +0300
committerStefan Gartner <stefang@aon.at>2002-12-07 23:57:50 +0300
commit2494b7c9ccddb8d738938cd977e574c101fe250b (patch)
tree7f2bed8db3ee6085e162e20fd86b428ee14af371 /source/blender/blenlib/BLI_editVert.h
parentcd4a60f5362b951826de8fc4218d30969c38095c (diff)
don't crash when adding a UVsphere (Hos, heli)
sgefant
Diffstat (limited to 'source/blender/blenlib/BLI_editVert.h')
-rw-r--r--source/blender/blenlib/BLI_editVert.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_editVert.h b/source/blender/blenlib/BLI_editVert.h
index 94b6589c8e2..60c72282582 100644
--- a/source/blender/blenlib/BLI_editVert.h
+++ b/source/blender/blenlib/BLI_editVert.h
@@ -48,7 +48,7 @@ typedef struct EditVert
float no[3];
float co[3];
short xs, ys;
- char f, h, f1, hash;
+ unsigned char f, h, f1, hash;
int totweight; /* __NLA */
struct MDeformWeight *dw; /* __NLA */
} EditVert;
@@ -70,8 +70,8 @@ typedef struct EditVlak
float uv[4][2];
unsigned int col[4];
struct TFace *tface; /* a pointer to original tface. */
- char mat_nr, flag;
- char f, f1;
+ unsigned char mat_nr, flag;
+ unsigned char f, f1;
} EditVlak;
#endif