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>2007-04-10 15:45:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-04-10 15:45:07 +0400
commit5a3ab0e32ecff0f1ff4cfc8cedf64f63b2291a5b (patch)
treecb38143220cd31d4cbe3775bb57853e46f3ffc9e /source/blender/makesdna/DNA_meshdata_types.h
parenta64339d319a9e2b4de31adca0e546d3109c5f041 (diff)
Found a bug where "make dupes real" would crash, when the group was an extternal link. - 1 liner fix from Ton.
Also added "sort faces by selection" to the sort menu. DNA_meshdata_types use C comments for GCC verbose warnings to be quiet
Diffstat (limited to 'source/blender/makesdna/DNA_meshdata_types.h')
-rw-r--r--source/blender/makesdna/DNA_meshdata_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h
index 6dceb73d253..f61b919a426 100644
--- a/source/blender/makesdna/DNA_meshdata_types.h
+++ b/source/blender/makesdna/DNA_meshdata_types.h
@@ -57,7 +57,7 @@ typedef struct MDeformWeight {
typedef struct MDeformVert {
struct MDeformWeight *dw;
int totweight;
- int flag; // flag only in use for weightpaint now
+ int flag; /* flag only in use for weightpaint now */
} MDeformVert;
typedef struct MVert {
@@ -150,7 +150,7 @@ typedef struct PartialVisibility {
#define ME_EDGEDRAW (1<<1)
#define ME_SEAM (1<<2)
#define ME_FGON (1<<3)
- // reserve 16 for ME_HIDE
+ /* reserve 16 for ME_HIDE */
#define ME_EDGERENDER (1<<5)
#define ME_LOOSEEDGE (1<<7)
#define ME_SEAM_LAST (1<<8)