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:
authorTon Roosendaal <ton@blender.org>2003-11-19 20:07:17 +0300
committerTon Roosendaal <ton@blender.org>2003-11-19 20:07:17 +0300
commit4347b1a7526d57703dc9213af71d402fd8f8a572 (patch)
treeb5289b93f4408d14ed6d0c0f5e72223cf1a3407f /source/blender/makesdna/DNA_key_types.h
parent79f753531e701b590c1534c17b4bbe79f4df38de (diff)
- fix: keys couldnt have more than 32k vertices. Just made a short into an
int in the key struct. warn: this recompiles dna!
Diffstat (limited to 'source/blender/makesdna/DNA_key_types.h')
-rw-r--r--source/blender/makesdna/DNA_key_types.h4
1 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 6c36febbff7..9bdbc2fbeed 100644
--- a/source/blender/makesdna/DNA_key_types.h
+++ b/source/blender/makesdna/DNA_key_types.h
@@ -43,9 +43,9 @@ typedef struct KeyBlock {
struct KeyBlock *next, *prev;
float pos;
- short flag, totelem;
+ short flag, pad;
short type, rt;
- int pad;
+ int totelem;
void *data;
char name[32];