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-02-05 22:18:55 +0300
committerPeter Schlaile <peter@schlaile.de>2006-02-05 22:18:55 +0300
commit38c4a3a209aa920d2d851c4250425bbfd66b508b (patch)
treecdecbfef85fdce1ab3dfe02ab618f0736ae8c8f6 /source/blender/makesdna/DNA_object_force.h
parent44e39005f8d691bd8e69d5cbd976add45a642687 (diff)
* Adds userdef-types for memcache limitor and frameserver-rendering
* Boosts the blender frame limit by changing the type of the frame number from short to int everywhere. Without this, timelines longer than a few minutes are impossible to handle. * Adds several types for ffmpeg input/output, hdaudio-tracks in sequencer
Diffstat (limited to 'source/blender/makesdna/DNA_object_force.h')
-rw-r--r--source/blender/makesdna/DNA_object_force.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_object_force.h b/source/blender/makesdna/DNA_object_force.h
index 5d716ffcafe..03487f478f9 100644
--- a/source/blender/makesdna/DNA_object_force.h
+++ b/source/blender/makesdna/DNA_object_force.h
@@ -91,8 +91,8 @@ typedef struct SoftBody {
float infrict; /* softbody inner springs friction */
/* baking */
- short sfra, efra;
- short interval, pad2;
+ int sfra, efra;
+ int interval, pad2;
SBVertex **keys; /* array of size totpointkey */
int totpointkey, totkey; /* if totpointkey != totpoint or totkey!- (efra-sfra)/interval -> free keys */