aboutsummaryrefslogtreecommitdiffstats
path: root/code/q3_ui
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-12-08 10:08:02 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-12-08 10:08:02 +0000
commit4d3e70d7ec32e53b272573f6eef21ab56ca79e01 (patch)
treeb9959bf37b6f410053e27987de0d8b64df5fb28f /code/q3_ui
parent9c286c2e6a0b9a2393f9925eb3ff61c76aefbe30 (diff)
downloadioquake3-aero-4d3e70d7ec32e53b272573f6eef21ab56ca79e01.tar.gz
ioquake3-aero-4d3e70d7ec32e53b272573f6eef21ab56ca79e01.zip
print "powered by the ioquake3 engine" in the main menu
git-svn-id: svn://svn.icculus.org/quake3/trunk@1230 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/q3_ui')
-rw-r--r--code/q3_ui/ui_menu.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/code/q3_ui/ui_menu.c b/code/q3_ui/ui_menu.c
index 73cddd0..46bd74b 100644
--- a/code/q3_ui/ui_menu.c
+++ b/code/q3_ui/ui_menu.c
@@ -222,11 +222,10 @@ static void Main_MenuDraw( void ) {
}
if (uis.demoversion) {
- UI_DrawProportionalString( 320, 372, "DEMO FOR MATURE AUDIENCES DEMO", UI_CENTER|UI_SMALLFONT, color );
- UI_DrawString( 320, 400, "Quake III Arena(c) 1999-2000, Id Software, Inc. All Rights Reserved", UI_CENTER|UI_SMALLFONT, color );
- } else {
- UI_DrawString( 320, 450, "Quake III Arena(c) 1999-2000, Id Software, Inc. All Rights Reserved", UI_CENTER|UI_SMALLFONT, color );
+ UI_DrawProportionalString( 320, 412, "DEMO FOR MATURE AUDIENCES DEMO", UI_CENTER|UI_SMALLFONT, color );
}
+ UI_DrawString( 320, 440, "Quake III Arena(c) 1999-2000, Id Software, Inc. All Rights Reserved", UI_CENTER|UI_SMALLFONT, color );
+ UI_DrawString( 320, 460, "powered by the ioquake3 engine", UI_CENTER|UI_SMALLFONT, color );
}