summaryrefslogtreecommitdiff
path: root/src/cgame
diff options
context:
space:
mode:
authorChristopher Schwarz <lakitu7@gmail.com>2009-10-06 07:45:38 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:16:41 +0000
commit3ae14f6c116571ebceba4af7fcb15a85b5b0c309 (patch)
treeeae99798f810d6c931dc97c99efdc6dab0a36ce3 /src/cgame
parent9cb4992260d8ab7f4987257ab0c5a15c42b78d2e (diff)
* Fix errant newline in the tutorial text
Diffstat (limited to 'src/cgame')
-rw-r--r--src/cgame/cg_tutorial.c2
1 files changed, 1 insertions, 1 deletions
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;