[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [34417] trunk/blender/source/blender/ makesdna/DNA_action_types.h: Bugfix #25611

Ton Roosendaal ton at blender.org
Thu Jan 20 16:17:03 CET 2011


Revision: 34417
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=34417
Author:   ton
Date:     2011-01-20 15:17:02 +0000 (Thu, 20 Jan 2011)
Log Message:
-----------
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.

Modified Paths:
--------------
    trunk/blender/source/blender/makesdna/DNA_action_types.h

Modified: trunk/blender/source/blender/makesdna/DNA_action_types.h
===================================================================
--- trunk/blender/source/blender/makesdna/DNA_action_types.h	2011-01-20 09:26:36 UTC (rev 34416)
+++ trunk/blender/source/blender/makesdna/DNA_action_types.h	2011-01-20 15:17:02 UTC (rev 34417)
@@ -327,7 +327,9 @@
 	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 */




More information about the Bf-blender-cvs mailing list