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:
authorPeter Schlaile <peter@schlaile.de>2006-05-06 19:26:53 +0400
committerPeter Schlaile <peter@schlaile.de>2006-05-06 19:26:53 +0400
commit5f571e4ded613ac46242affa2cea90135077d323 (patch)
treef80ebe58bab5a7f74634676e1f4cf93861baafa2 /source/blender/makesdna/DNA_constraint_types.h
parent5a9b917ea4056694d31b61a185d859ce368e968c (diff)
==Bugfix==
Made the frame boost from short to int (30000 -> 300000 frames) complete by walking through the source and finally changing all frame-variables to ints. This should finally fix the framecounter warp around seen in some buttons. If you step on any further problems that may arise starting from frame 32768 please just give me a hint and I'll fix it. (Sorry about that, didn't know enough about Blender, when I did it the first time...)
Diffstat (limited to 'source/blender/makesdna/DNA_constraint_types.h')
-rw-r--r--source/blender/makesdna/DNA_constraint_types.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h
index b7dcadd501c..21380bdcdab 100644
--- a/source/blender/makesdna/DNA_constraint_types.h
+++ b/source/blender/makesdna/DNA_constraint_types.h
@@ -116,10 +116,11 @@ typedef struct bActionConstraint{
Object *tar;
short type;
short local;
- short start;
- short end;
+ int start;
+ int end;
float min;
float max;
+ int pad;
struct bAction *act;
char subtarget[32];
} bActionConstraint;