*Fix for last commit. Removed unused code.

This commit is contained in:
Thomas Dinges
2010-01-15 17:36:06 +00:00
parent ace8d45c1c
commit 6d1f5f8f5d

View File

@@ -79,19 +79,15 @@ static void console_line_color(unsigned char *fg, int type)
switch(type) {
case CONSOLE_LINE_OUTPUT:
UI_GetThemeColor3ubv(TH_CONSOLE_OUTPUT, fg);
fg[0], fg[1], fg[2];
break;
case CONSOLE_LINE_INPUT:
UI_GetThemeColor3ubv(TH_CONSOLE_INPUT, fg);
fg[0], fg[1], fg[2];
break;
case CONSOLE_LINE_INFO:
UI_GetThemeColor3ubv(TH_CONSOLE_INFO, fg);
fg[0], fg[1], fg[2];
break;
case CONSOLE_LINE_ERROR:
UI_GetThemeColor3ubv(TH_CONSOLE_ERROR, fg);
fg[0], fg[1], fg[2];
break;
}
}