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:
authorJohnny Matthews <johnny.matthews@gmail.com>2004-08-03 23:36:17 +0400
committerJohnny Matthews <johnny.matthews@gmail.com>2004-08-03 23:36:17 +0400
commit248404e7a2ec74678b38f83831786e82bdcc91cc (patch)
tree4020a4a2afbddb11e491f668c0a7401f6fa1cb2f /source/blender/blenloader
parentd1bbaf18ca2d23f1f7c3a6c0e990d14cce898e07 (diff)
This commit changes the sweep effect to be called 'Wipe' in both UI and in backend variable naming.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/writefile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c
index 7c25e12f3bc..ddab7f2b26d 100644
--- a/source/blender/blenloader/intern/writefile.c
+++ b/source/blender/blenloader/intern/writefile.c
@@ -1050,8 +1050,8 @@ static void write_scenes(WriteData *wd, ListBase *scebase)
if(seq->plugin) writestruct(wd, DATA, "PluginSeq", 1, seq->plugin);
if(seq->effectdata) {
switch(seq->type){
- case SEQ_SWEEP:
- writestruct(wd, DATA, "SweepVars", 1, seq->effectdata);
+ case SEQ_WIPE:
+ writestruct(wd, DATA, "WipeVars", 1, seq->effectdata);
break;
case SEQ_GLOW:
writestruct(wd, DATA, "GlowVars", 1, seq->effectdata);