Searched refs:con_totallines (Results 1 - 6 of 6) sorted by relevance

/external/quake/quake/src/WinQuake/
H A Dconsole.h24 extern int con_totallines;
H A Dconsole.cpp39 int con_totallines; // total lines in console scrollback variable
167 con_totallines = CON_TEXTSIZE / con_linewidth;
174 oldtotallines = con_totallines;
175 con_totallines = CON_TEXTSIZE / con_linewidth;
178 if (con_totallines < numlines)
179 numlines = con_totallines;
193 con_text[(con_totallines - 1 - i) * con_linewidth + j] =
203 con_current = con_totallines - 1;
258 Q_memset (&con_text[(con_current%con_totallines)*con_linewidth]
336 y = con_current % con_totallines;
[all...]
H A Dkeys.cpp240 if (con_backscroll > (int)(con_totallines - (vid.height>>3) - 1))
241 con_backscroll = (int)(con_totallines - (vid.height>>3) - 1);
255 con_backscroll = con_totallines - (vid.height>>3) - 1;
/external/quake/quake/src/QW/client/
H A Dconsole.c30 int con_totallines; // total lines in console scrollback variable
169 con_totallines = CON_TEXTSIZE / con_linewidth;
176 oldtotallines = con_totallines;
177 con_totallines = CON_TEXTSIZE / con_linewidth;
180 if (con_totallines < numlines)
181 numlines = con_totallines;
195 con->text[(con_totallines - 1 - i) * con_linewidth + j] =
204 con->current = con_totallines - 1;
263 Q_memset (&con->text[(con->current%con_totallines)*con_linewidth]
332 y = con->current % con_totallines;
[all...]
H A Dconsole.h40 extern int con_totallines;
H A Dkeys.c305 con->display = con->current - con_totallines + 10;

Completed in 86 milliseconds