IOQ3 commit 2368

This commit is contained in:
Richard Allen 2012-12-12 20:04:53 +00:00
parent 33829eb429
commit 121659f2c5
1 changed files with 16 additions and 12 deletions

View File

@ -365,7 +365,7 @@ void UI_MainMenu( void ) {
s_main.cinematics.color = color_red;
s_main.cinematics.style = style;
if (UI_TeamArenaExists()) {
if ( !uis.demoversion && UI_TeamArenaExists() ) {
teamArena = qtrue;
y += MAIN_MENU_VERTICAL_SPACING;
s_main.teamArena.generic.type = MTYPE_PTEXT;
@ -379,6 +379,7 @@ void UI_MainMenu( void ) {
s_main.teamArena.style = style;
}
if ( !uis.demoversion ) {
y += MAIN_MENU_VERTICAL_SPACING;
s_main.mods.generic.type = MTYPE_PTEXT;
s_main.mods.generic.flags = QMF_CENTER_JUSTIFY|QMF_PULSEIFFOCUS;
@ -389,6 +390,7 @@ void UI_MainMenu( void ) {
s_main.mods.string = "MODS";
s_main.mods.color = color_red;
s_main.mods.style = style;
}
y += MAIN_MENU_VERTICAL_SPACING;
s_main.exit.generic.type = MTYPE_PTEXT;
@ -409,7 +411,9 @@ void UI_MainMenu( void ) {
if (teamArena) {
Menu_AddItem( &s_main.menu, &s_main.teamArena );
}
if ( !uis.demoversion ) {
Menu_AddItem( &s_main.menu, &s_main.mods );
}
Menu_AddItem( &s_main.menu, &s_main.exit );
trap_Key_SetCatcher( KEYCATCH_UI );