Lines Matching refs:lines
39 int con_totallines; // total lines in console scrollback
40 int con_backscroll; // lines up from bottom to display
49 // for transparent notify lines
63 int con_notifylines; // scan lines to clear for notify lines
517 Draws the last few lines of output transparently over the game top
580 void Con_DrawConsole (int lines, qboolean drawinput)
587 if (lines <= 0)
598 Draw_ConsoleBackground (lines);
601 con_vislines = lines;
603 rows = (lines-16)>>3; // rows of text to draw
604 y = lines - 16 - (rows<<3); // may start slightly negative