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:
authorRoel Spruit <roel@spruitje.nl>2004-06-23 22:22:51 +0400
committerRoel Spruit <roel@spruitje.nl>2004-06-23 22:22:51 +0400
commit629e526b25741a2d8faa422ff27adce7ffe3a8be (patch)
treefbd7d1260e0d8ba7f392f385673edd3c44de0bc5 /source/blender/src/editseq.c
parent3bf5e671d0dc04e1b04ee8106ade3f4fa0d4f3f8 (diff)
- Added correct Writing/Reading of the new Sweep sequence effect (Thanks Ton, where would I be without you)
- Sweep effect updates after you change the type of sweep now.
Diffstat (limited to 'source/blender/src/editseq.c')
-rw-r--r--source/blender/src/editseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editseq.c b/source/blender/src/editseq.c
index 1ac23530d03..aef76886ba2 100644
--- a/source/blender/src/editseq.c
+++ b/source/blender/src/editseq.c
@@ -901,7 +901,7 @@ static int add_seq_effect(int type)
/* Allocate variable structs for effects with settings */
if(seq->type==SEQ_SWEEP){
- seq->varstr = MEM_callocN(sizeof(struct SweepVars), "sweepvars");
+ seq->effectdata = MEM_callocN(sizeof(struct SweepVars), "sweepvars");
}
if(seq->type==SEQ_ALPHAUNDER || seq->type==SEQ_ALPHAOVER) {