Revision: 16979
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=16979
Author:   ton
Date:     2008-10-08 20:15:19 +0200 (Wed, 08 Oct 2008)

Log Message:
-----------
Bugfix #17784

libtiff init was missing on "Play anim", causing it to not read tiffs.

Modified Paths:
--------------
    trunk/blender/source/creator/creator.c

Modified: trunk/blender/source/creator/creator.c
===================================================================
--- trunk/blender/source/creator/creator.c      2008-10-08 18:07:56 UTC (rev 
16978)
+++ trunk/blender/source/creator/creator.c      2008-10-08 18:15:19 UTC (rev 
16979)
@@ -379,6 +379,10 @@
                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;


_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to