From 3ae14f6c116571ebceba4af7fcb15a85b5b0c309 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Tue, 6 Oct 2009 07:45:38 +0000 Subject: * Fix errant newline in the tutorial text --- src/cgame/cg_tutorial.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cgame/cg_tutorial.c b/src/cgame/cg_tutorial.c index 75bca690..19c47542 100644 --- a/src/cgame/cg_tutorial.c +++ b/src/cgame/cg_tutorial.c @@ -683,7 +683,7 @@ const char *CG_TutorialText( void ) } } - Q_strcat( text, MAX_TUTORIAL_TEXT, "Press ESC for the menu" ); + Q_strcat( text, MAX_TUTORIAL_TEXT, "Press ESC for the menu\n" ); } return text; -- cgit