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>2013-09-25 15:11:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-25 15:11:41 +0400
commit3c05662f5e03e1d3d86e4ed081301f83ed72e26b (patch)
tree55469f377c202623d040b05b8a497cd863149e3d /source/blender/makesdna/DNA_object_types.h
parent8917e63134a61bcc45e1dec189ee45508bfec09c (diff)
fix error where BKE_mesh_cd_validate layer renaming would use invalid index values. from r60260
also correct some comments.
Diffstat (limited to 'source/blender/makesdna/DNA_object_types.h')
-rw-r--r--source/blender/makesdna/DNA_object_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h
index 53d2ab1df07..2ff697f513f 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -142,7 +142,7 @@ typedef struct Object {
/* materials */
struct Material **mat; /* material slots */
char *matbits; /* a boolean field, with each byte 1 if corresponding material is linked to object */
- int totcol; /* copy of mesh or curve or meta */
+ int totcol; /* copy of mesh, curve & meta struct member of same name (keep in sync) */
int actcol; /* currently selected material in the UI */
/* rot en drot have to be together! (transform('r' en 's')) */