From fe53cf2cb4c36322cd9d7d1075049f2dd9a4b777 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Mon, 8 Nov 2010 14:08:22 +0000 Subject: [PATCH] Patch [#24608] Fix for typo and better indentation in command line help by Susanne H. (sanne). Thanks! --- source/creator/creator.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/creator/creator.c b/source/creator/creator.c index ec0470f0710..11715289a82 100644 --- a/source/creator/creator.c +++ b/source/creator/creator.c @@ -966,9 +966,9 @@ void setupArguments(bContext *C, bArgs *ba, SYS_SystemHandle *syshandle) 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 @@ void setupArguments(bContext *C, bArgs *ba, SYS_SystemHandle *syshandle) /* second pass: custom window stuff */ BLI_argsAdd(ba, 2, "-p", "--window-geometry", " \n\tOpen with lower left corner at , and width and height as , ", 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 */