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>2011-01-20 18:17:02 +0300
committerTon Roosendaal <ton@blender.org>2011-01-20 18:17:02 +0300
commit2e436acff07917b4c94f3f1cdb87d940c1f1492f (patch)
tree80ac3f09e540e408bdda0963df2777534887e427 /source/blender/makesdna/DNA_action_types.h
parentba965ab32e7dddd7160c60038fa089d5ac318fd7 (diff)
Bugfix #25611
Pose Proxy: layer settings only saved the 16 bits for proxy armatures, was still a short, whilst the other layer settings use ints.
Diffstat (limited to 'source/blender/makesdna/DNA_action_types.h')
-rw-r--r--source/blender/makesdna/DNA_action_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h
index cf1c379cbb6..17f9afce7c3 100644
--- a/source/blender/makesdna/DNA_action_types.h
+++ b/source/blender/makesdna/DNA_action_types.h
@@ -327,7 +327,9 @@ typedef struct bPose {
ListBase chanbase; /* list of pose channels, PoseBones in RNA */
struct GHash *chanhash; /* ghash for quicker string lookups */
- short flag, proxy_layer; /* proxy layer: copy from armature, gets synced */
+ short flag, pad;
+ unsigned int proxy_layer; /* proxy layer: copy from armature, gets synced */
+ int pad1;
float ctime; /* local action time of this pose */
float stride_offset[3]; /* applied to object */