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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-03-26 17:30:53 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-03-26 17:30:53 +0400
commitdbfe971c06e4e029b679b4a178258974e9845ad1 (patch)
tree369980964610df98d53ca3c24c8834bdfa4b6c51 /source/blender/makesdna/DNA_movieclip_types.h
parent53dab9ec69d8a583f458a47d3cdfdae06486ca17 (diff)
Fix for crash when adding image sequence movie clip into a sequencer
Diffstat (limited to 'source/blender/makesdna/DNA_movieclip_types.h')
-rw-r--r--source/blender/makesdna/DNA_movieclip_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_movieclip_types.h b/source/blender/makesdna/DNA_movieclip_types.h
index b4e6c07cec3..ed7310ff883 100644
--- a/source/blender/makesdna/DNA_movieclip_types.h
+++ b/source/blender/makesdna/DNA_movieclip_types.h
@@ -82,7 +82,9 @@ typedef struct MovieClip {
* in SpaceClip clip user */
struct MovieClipProxy proxy; /* proxy to clip data */
- int flag, pad;
+ int flag;
+
+ int len; /* lenght of movie */
} MovieClip;
typedef struct MovieClipScopes {