diff --git a/common/console.c b/common/console.c index 4598d7b..d7afa6d 100644 --- a/common/console.c +++ b/common/console.c @@ -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 ();