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:
authorTon Roosendaal <ton@blender.org>2008-10-08 22:15:19 +0400
committerTon Roosendaal <ton@blender.org>2008-10-08 22:15:19 +0400
commit9cbb1745c2e149657f9d7a9988eccfc884f0bffc (patch)
tree1d31a6c9fd950386c466035c6dd4858840c39db6 /source/creator
parentd8facbd45e437d4b4adae2c8efcd917a6b2f2873 (diff)
Bugfix #17784
libtiff init was missing on "Play anim", causing it to not read tiffs.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 84ee7c319f9..ab86c46dbdd 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -379,6 +379,10 @@ int main(int argc, char **argv)
else if(argv[a][0] == '-') {
switch(argv[a][1]) {
case 'a': /* -b was not given, play an animation */
+
+ /* exception here, see below, it probably needs happens after qt init? */
+ libtiff_init();
+
playanim(argc-1, argv+1);
exit(0);
break;