remove an unneeded #ifdef QUAKEWORLD

This commit is contained in:
Bill Currie 2000-04-03 08:30:09 +00:00
parent 197b9f60d7
commit 895e900556

View file

@ -577,10 +577,8 @@ void Con_DrawConsole (int lines)
int rows; int rows;
char *text; char *text;
int row; int row;
#ifdef QUAKEWORLD
int j, n; int j, n;
char dlbar[1024]; char dlbar[1024];
#endif
if (lines <= 0) if (lines <= 0)
return; return;
@ -621,7 +619,6 @@ void Con_DrawConsole (int lines)
Draw_Character ( (x+1)<<3, y, text[x]); Draw_Character ( (x+1)<<3, y, text[x]);
} }
#ifdef QUAKEWORLD
// draw the download bar // draw the download bar
// figure out width // figure out width
if (cls.download) { if (cls.download) {
@ -664,8 +661,6 @@ void Con_DrawConsole (int lines)
for (i = 0; i < strlen(dlbar); i++) for (i = 0; i < strlen(dlbar); i++)
Draw_Character ( (i+1)<<3, y, dlbar[i]); Draw_Character ( (i+1)<<3, y, dlbar[i]);
} }
#endif
// draw the input prompt, user text, and cursor if desired // draw the input prompt, user text, and cursor if desired
Con_DrawInput (); Con_DrawInput ();