summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2015-12-05 19:36:05 +0100
committerPaweł Redman <pawel.redman@gmail.com>2015-12-05 19:36:05 +0100
commitb084995c8e7392c8f1151b01de21302e1c667a65 (patch)
treee655076e12127a5ae91dace33ea5d34d02269ac0
parentf19c6644a80f8af5c66b8c19eb81a465e4573893 (diff)
Remove debug messages added in the previous commit.
-rw-r--r--src/ui/ui_main.c10
1 files changed, 0 insertions, 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 )
{