mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-02-16 00:31:17 +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;
|
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 ();
|
||||||
|
|
Loading…
Reference in a new issue