remove an unneeded #ifdef QUAKEWORLD

This commit is contained in:
Bill Currie 2000-04-03 08:30:09 +00:00
parent 197b9f60d7
commit 895e900556
1 changed files with 0 additions and 5 deletions

View File

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