aboutsummaryrefslogtreecommitdiffstats
path: root/code/q3_ui/ui_menu.c
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-12-11 00:19:23 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-12-11 00:19:23 +0000
commitec682e5ce751c3e83df747412ed0b6786d213ab3 (patch)
tree89e7d270e18fb8c465407c937623177dbb9f9a91 /code/q3_ui/ui_menu.c
parentff0cfef33b01b1146306b0f6d81bf3604789c546 (diff)
downloadioquake3-aero-ec682e5ce751c3e83df747412ed0b6786d213ab3.tar.gz
ioquake3-aero-ec682e5ce751c3e83df747412ed0b6786d213ab3.zip
* Replace "powered by ioq3" text with ui_ioq3 CVAR_ROM
* Guess display aspect based on the desktop resolution * Sort detected resolutions by... + closeness to display aspect + ascending width + ascending height * Apply Q3 coding style to resolution detection code git-svn-id: svn://svn.icculus.org/quake3/trunk@1232 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/q3_ui/ui_menu.c')
-rw-r--r--code/q3_ui/ui_menu.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/code/q3_ui/ui_menu.c b/code/q3_ui/ui_menu.c
index 46bd74b..73cddd0 100644
--- a/code/q3_ui/ui_menu.c
+++ b/code/q3_ui/ui_menu.c
@@ -222,10 +222,11 @@ static void Main_MenuDraw( void ) {
}
if (uis.demoversion) {
- UI_DrawProportionalString( 320, 412, "DEMO FOR MATURE AUDIENCES DEMO", UI_CENTER|UI_SMALLFONT, color );
+ 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_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 );
}