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:
authorCampbell Barton <ideasman42@gmail.com>2012-04-21 18:14:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-21 18:14:58 +0400
commit8765dfccf725770007e3b4e6b24199fe8377df71 (patch)
tree280d5c199e0c037bb9a3f9f193bd70a411a8b8b5 /source/blender/makesdna
parent1c54eaecd89ba30500e7b83adaf1c1a8a85c0b43 (diff)
style cleanup: correct typos
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_key_types.h2
-rw-r--r--source/blender/makesdna/DNA_meshdata_types.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_key_types.h b/source/blender/makesdna/DNA_key_types.h
index 847d0b2cbbe..8494e663fbe 100644
--- a/source/blender/makesdna/DNA_key_types.h
+++ b/source/blender/makesdna/DNA_key_types.h
@@ -52,7 +52,7 @@ typedef struct KeyBlock {
short relative; /* relative == 0 means first key is reference, otherwise the index of Key->blocks */
short flag;
- int totelem; /* total number if items in the keyblock (compare with mesh/curve verts to chech we match) */
+ int totelem; /* total number if items in the keyblock (compare with mesh/curve verts to check we match) */
int uid; /* for meshes only, match the unique number with the customdata layer */
void *data; /* array of shape key values, size is (Key->elemsize * KeyBlock->totelem) */
diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h
index 2de89a31ab0..9891469c29b 100644
--- a/source/blender/makesdna/DNA_meshdata_types.h
+++ b/source/blender/makesdna/DNA_meshdata_types.h
@@ -257,7 +257,7 @@ typedef struct MRecast {
/* medge->flag (1=SELECT)*/
#define ME_EDGEDRAW (1<<1)
#define ME_SEAM (1<<2)
-#define ME_FGON (1<<3)
+/* #define ME_FGON (1<<3) */ /* no longer used (now we have ngons) */
/* reserve 16 for ME_HIDE */
#define ME_EDGERENDER (1<<5)
#define ME_LOOSEEDGE (1<<7)