[Super-tux-commit] supertux/src setup.cpp,1.105,1.106
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-07-07 17:56:56
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21331/src Modified Files: setup.cpp Log Message: Changed --debug-mode for --debug. Index: setup.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/setup.cpp,v retrieving revision 1.105 retrieving revision 1.106 diff -u -d -r1.105 -r1.106 --- setup.cpp 29 Jun 2004 17:47:36 -0000 1.105 +++ setup.cpp 7 Jul 2004 17:56:47 -0000 1.106 @@ -1038,7 +1038,7 @@ printf("Music disabled \n"); use_music = false; } - else if (strcmp(argv[i], "--debug-mode") == 0) + else if (strcmp(argv[i], "--debug") == 0) { /* Enable the debug-mode */ debug_mode = true; @@ -1067,7 +1067,7 @@ " Define how joystick buttons and axis should be mapped\n" " --leveleditor Opens the leveleditor in a file. (Only works when a file is provided.)\n" " -d, --datadir DIR Load Game data from DIR (default: automatic)\n" - " --debug-mode Enables the debug-mode, which is useful for developers.\n" + " --debug Enables the debug mode, which is useful for developers.\n" " --help Display a help message summarizing command-line\n" " options, license and game controls.\n" " --usage Display a brief message summarizing command-line options.\n" @@ -1106,7 +1106,7 @@ /* Display the usage message: */ - fprintf(fi, _("Usage: %s [--fullscreen] [--opengl] [--disable-sound] [--disable-music] [--debug-mode] | [--usage | --help | --version] [--leveleditor] FILENAME\n"), + fprintf(fi, _("Usage: %s [--fullscreen] [--opengl] [--disable-sound] [--disable-music] [--debug] | [--usage | --help | --version] [--leveleditor] FILENAME\n"), prog); |