From: havoc Date: Wed, 28 Feb 2007 16:49:54 +0000 (+0000) Subject: remove stray \n characters in Cmd_AddCommand calls X-Git-Tag: xonotic-v0.1.0preview~3491 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=2e4a1fba322258eadf69aec4cc9a6b43fcf884bb;p=xonotic%2Fdarkplaces.git remove stray \n characters in Cmd_AddCommand calls git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6925 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_input.c b/cl_input.c index 9cf08ead..720f8f09 100644 --- a/cl_input.c +++ b/cl_input.c @@ -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"); diff --git a/gl_rmain.c b/gl_rmain.c index 6564b4c0..361012e3 100644 --- a/gl_rmain.c +++ b/gl_rmain.c @@ -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);