From b084995c8e7392c8f1151b01de21302e1c667a65 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sat, 5 Dec 2015 19:36:05 +0100 Subject: Remove debug messages added in the previous commit. --- src/ui/ui_main.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/ui/ui_main.c b/src/ui/ui_main.c index 424513f..0278cca 100644 --- a/src/ui/ui_main.c +++ b/src/ui/ui_main.c @@ -1366,8 +1366,6 @@ void UI_ParseMenu( const char *menuFile ) handle = trap_Parse_LoadSource( menuFile ); - Com_Printf("^5ui: UI_ParseMenu(%s)\n", menuFile); - if( !handle ) { Com_Printf( S_COLOR_YELLOW "WARNING: Menu file %s not found\n", @@ -1382,8 +1380,6 @@ void UI_ParseMenu( const char *menuFile ) if( !trap_Parse_ReadToken( handle, &token ) ) break; - Com_Printf("^5--- token.string = %s\n", token.string); - //if( Q_stricmp( token, "{" ) ) { // Com_Printf( "Missing { in menu file\n" ); // break; @@ -1399,7 +1395,6 @@ void UI_ParseMenu( const char *menuFile ) if( Q_stricmp( token.string, "assetGlobalDef" ) == 0 ) { - Com_Printf("^5--- assetGlobalDef\n"); if( Asset_Parse( handle ) ) continue; else @@ -1408,7 +1403,6 @@ void UI_ParseMenu( const char *menuFile ) if( Q_stricmp( token.string, "menudef" ) == 0 ) { - Com_Printf("^5--- Menu_New\n"); // start a new menu Menu_New( handle ); } @@ -4217,10 +4211,6 @@ void UI_SetActiveMenu( uiMenuCommand_t menu ) // this should be the ONLY way the menu system is brought up // enusure minumum menu data is cached - Com_Printf("^5ui: UI_SetActiveMenu(%i)\n", menu); - Com_Printf("^5--: Menu_Count() = %i\n", Menu_Count()); - - if( Menu_Count() > 0 ) { -- cgit