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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2006-12-27 13:20:29 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2006-12-27 13:20:29 +0300
commitd24597c8a3bfaeded266d9c86b524d4f15011e52 (patch)
tree0248a77fad00d7aaf12918877784b3cdddd65f02 /source/blender/makesdna/DNA_customdata_types.h
parentad1cc8a8fc4a0a0cef4197aac19b7702d2ee6532 (diff)
Fix for bug #5523:
A crash on rendering with multiple UV layers, layer names weren't always getting copied correct.
Diffstat (limited to 'source/blender/makesdna/DNA_customdata_types.h')
-rw-r--r--source/blender/makesdna/DNA_customdata_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_customdata_types.h b/source/blender/makesdna/DNA_customdata_types.h
index d8930f8a098..921554552ef 100644
--- a/source/blender/makesdna/DNA_customdata_types.h
+++ b/source/blender/makesdna/DNA_customdata_types.h
@@ -87,7 +87,7 @@ typedef struct CustomData {
#define CD_FLAG_TEMPORARY ((1<<2)|CD_FLAG_NOCOPY)
/* Limits */
-#define MAX_MTFACE 4
-#define MAX_MCOL 4
+#define MAX_MTFACE 8
+#define MAX_MCOL 8
#endif