no message

This commit is contained in:
cholleme 2003-11-02 19:57:02 +00:00
parent 373bdb6326
commit 8497a1fab7

View file

@ -42,7 +42,6 @@ int con_x; // offset in current line for next print
char *con_text=0;
cvar_t con_notifytime = {"con_notifytime","3"}; //seconds
cvar_t con_spiral = {"con_spiral","0", true}; //Console Spiral - Eradicator
#define NUM_CON_TIMES 4
float con_times[NUM_CON_TIMES]; // realtime time the line was generated
@ -246,7 +245,6 @@ void Con_Init (void)
// register our commands
//
Cvar_RegisterVariable (&con_notifytime);
Cvar_RegisterVariable (&con_spiral);
Cmd_AddCommand ("toggleconsole", Con_ToggleConsole_f);
Cmd_AddCommand ("messagemode", Con_MessageMode_f);
@ -638,13 +636,11 @@ void Con_DrawConsole (int lines, qboolean drawinput)
return;
// draw the background
if (con_spiral.value) //Spiral Console - Eradicator
Draw_SpiralConsoleBackground (lines);
else
Draw_ConsoleBackground (lines);
Draw_ConsoleBackground (lines);
//for the font blurring
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
// draw the text
con_vislines = lines;