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-27 02:36:32 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-03-27 02:36:32 +0400
commit4d802ff682b81143012d9a10cf6a58322dd18d89 (patch)
treecba6b55ecd0d599604544ecc5143d15523b894f2 /source/blender/makesdna/DNA_sequence_types.h
parent40c667e75e4e3bfa0bcbdbc678d72df061764aeb (diff)
Return back sfra property to Sequence structure to prevent data loose
until things discussing in #30663 will be resolved.
Diffstat (limited to 'source/blender/makesdna/DNA_sequence_types.h')
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index ba64f332de5..7aa37b547f4 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -181,6 +181,8 @@ typedef struct Sequence {
int blend_mode;
float blend_opacity;
+ /* is sfra needed anymore? - it looks like its only used in one place */
+ int sfra, pad; /* starting frame according to the timeline of the scene. */
} Sequence;
typedef struct MetaStack {