]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
remove stray \n characters in Cmd_AddCommand calls
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 28 Feb 2007 16:49:54 +0000 (16:49 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 28 Feb 2007 16:49:54 +0000 (16:49 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6925 d7cf8633-e32d-0410-b094-e92efae38249

cl_input.c
gl_rmain.c

index 9cf08eadcd824d20762288f208276bbfb1b854f1..720f8f097a234ffbc7f461e35b5e2d42b2b09c27 100644 (file)
@@ -1607,7 +1607,7 @@ void CL_InitInput (void)
        Cmd_AddCommand ("-lookup", IN_LookupUp, "stop looking upward");
        Cmd_AddCommand ("+lookdown", IN_LookdownDown, "look downward");
        Cmd_AddCommand ("-lookdown", IN_LookdownUp, "stop looking downward");
-       Cmd_AddCommand ("+strafe", IN_StrafeDown, "activate strafing mode (move instead of turn)\n");
+       Cmd_AddCommand ("+strafe", IN_StrafeDown, "activate strafing mode (move instead of turn)");
        Cmd_AddCommand ("-strafe", IN_StrafeUp, "deactivate strafing mode");
        Cmd_AddCommand ("+moveleft", IN_MoveleftDown, "strafe left");
        Cmd_AddCommand ("-moveleft", IN_MoveleftUp, "stop strafing left");
index 6564b4c0b23d1265ad4dfa4e3199b78c8f222a46..361012e3f02ac04b445383fc56e2fb9569f427b9 100644 (file)
@@ -1122,7 +1122,7 @@ void GL_Main_Init(void)
 {
        r_main_mempool = Mem_AllocPool("Renderer", 0, NULL);
 
-       Cmd_AddCommand("r_glsl_restart", R_GLSL_Restart_f, "unloads GLSL shaders, they will then be reloaded as needed\n");
+       Cmd_AddCommand("r_glsl_restart", R_GLSL_Restart_f, "unloads GLSL shaders, they will then be reloaded as needed");
        FOG_registercvars(); // FIXME: move this fog stuff to client?
        Cvar_RegisterVariable(&r_nearclip);
        Cvar_RegisterVariable(&r_showsurfaces);