mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 06:31:56 +00:00
remove an unneeded #ifdef QUAKEWORLD
This commit is contained in:
parent
197b9f60d7
commit
895e900556
1 changed files with 0 additions and 5 deletions
|
@ -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 ();
|
||||
|
|
Loading…
Reference in a new issue