[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [28768] trunk/blender/source/creator/ creator.c: noticed thread count was wrong in help message.

Campbell Barton ideasman42 at gmail.com
Fri May 14 16:53:00 CEST 2010


Revision: 28768
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=28768
Author:   campbellbarton
Date:     2010-05-14 16:53:00 +0200 (Fri, 14 May 2010)

Log Message:
-----------
noticed thread count was wrong in help message.

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

Modified: trunk/blender/source/creator/creator.c
===================================================================
--- trunk/blender/source/creator/creator.c	2010-05-14 14:48:57 UTC (rev 28767)
+++ trunk/blender/source/creator/creator.c	2010-05-14 14:53:00 UTC (rev 28768)
@@ -223,7 +223,7 @@
 	printf ("    \tHDR TIFF EXR MULTILAYER MPEG AVICODEC QUICKTIME CINEON DPX DDS\n");
 	printf ("    -x <bool>\tSet option to add the file extension to the end of the file.\n");
 	printf ("    -t <threads>\tUse amount of <threads> for rendering (background mode only).\n");
-	printf ("      [1-8], 0 for systems processor count.\n");
+	printf ("      [1-%d], 0 for systems processor count.\n", BLENDER_MAX_THREADS);
 	printf ("\nAnimation playback options:\n");
 	printf ("  -a <options> <file(s)>\tPlayback <file(s)>, only operates this way when -b is not used.\n");
 	printf ("    -p <sx> <sy>\tOpen with lower left corner at <sx>, <sy>\n");





More information about the Bf-blender-cvs mailing list