[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [32947] trunk/blender/source/creator/ creator.c: Patch [#24608] Fix for typo and better indentation in command line help by Susanne H.

Thomas Dinges dingto at gmx.de
Mon Nov 8 15:08:23 CET 2010


Revision: 32947
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=32947
Author:   dingto
Date:     2010-11-08 15:08:22 +0100 (Mon, 08 Nov 2010)

Log Message:
-----------
Patch [#24608] Fix for typo and better indentation in command line help by Susanne H. (sanne). Thanks! 

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

Modified: trunk/blender/source/creator/creator.c
===================================================================
--- trunk/blender/source/creator/creator.c	2010-11-08 14:00:23 UTC (rev 32946)
+++ trunk/blender/source/creator/creator.c	2010-11-08 14:08:22 UTC (rev 32947)
@@ -966,9 +966,9 @@
 
 	static char game_doc[] = "Game Engine specific options"
 		"\n\t-g fixedtime\t\tRun on 50 hertz without dropping frames"
-		"\n\t-g vertexarrays\tUse Vertex Arrays for rendering (usually faster)"
+		"\n\t-g vertexarrays\t\tUse Vertex Arrays for rendering (usually faster)"
 		"\n\t-g nomipmap\t\tNo Texture Mipmapping"
-		"\n\t-g linearmipmap\tLinear Texture Mipmapping instead of Nearest (default)";
+		"\n\t-g linearmipmap\t\tLinear Texture Mipmapping instead of Nearest (default)";
 
 	static char debug_doc[] = "\n\tTurn debugging on\n"
 		"\n\t* Prints every operator call and their arguments"
@@ -1000,7 +1000,7 @@
 	/* second pass: custom window stuff */
 	BLI_argsAdd(ba, 2, "-p", "--window-geometry", "<sx> <sy> <w> <h>\n\tOpen with lower left corner at <sx>, <sy> and width and height as <w>, <h>", prefsize, NULL);
 	BLI_argsAdd(ba, 2, "-w", "--window-border", "\n\tForce opening with borders (default)", with_borders, NULL);
-	BLI_argsAdd(ba, 2, "-W", "--window-borderless", "\n\tForce opening with without borders", without_borders, NULL);
+	BLI_argsAdd(ba, 2, "-W", "--window-borderless", "\n\tForce opening without borders", without_borders, NULL);
 	BLI_argsAdd(ba, 2, "-R", NULL, "\n\tRegister .blend extension (windows only)", register_extension, ba);
 
 	/* third pass: disabling things and forcing settings */





More information about the Bf-blender-cvs mailing list