From f2cbb819fcf23b7bb4b9dcf11d603d120aa59a5e Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Sat, 8 Dec 2007 10:08:02 +0000 Subject: [PATCH] print "powered by the ioquake3 engine" in the main menu --- code/q3_ui/ui_menu.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/q3_ui/ui_menu.c b/code/q3_ui/ui_menu.c index 73cddd06..46bd74b8 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 ); }