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:
authorAlexander Ewering <blender@instinctive.de>2003-07-23 01:17:30 +0400
committerAlexander Ewering <blender@instinctive.de>2003-07-23 01:17:30 +0400
commitae848a97c4312da3ecf2417f72a1e0d55a4c4630 (patch)
treea920303ddbceb9b5137415a908137bb9fb1284c0
parentb83fb8c87c73a37aeab470126bc955e0693b708b (diff)
Images in Sequence editor work again! Isn't this great! :)
-rw-r--r--source/blender/src/sequence.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/sequence.c b/source/blender/src/sequence.c
index 76beb874345..fa9f5a0ad2b 100644
--- a/source/blender/src/sequence.c
+++ b/source/blender/src/sequence.c
@@ -1515,7 +1515,7 @@ ImBuf *give_ibuf_seq(int cfra)
MEM_freeN(seqar);
if(!seqfirst) return 0;
- if(!seqfirst->curelem==0) return 0;
+ if(!seqfirst->curelem) return 0;
return seqfirst->curelem->ibuf;
}