diff options
Diffstat (limited to 'src/client/cl_console.c')
-rw-r--r-- | src/client/cl_console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/cl_console.c b/src/client/cl_console.c index 09e0429f..4e89b98e 100644 --- a/src/client/cl_console.c +++ b/src/client/cl_console.c @@ -509,7 +509,7 @@ void Con_DrawSolidConsole( float frac ) { // draw the text con.vislines = lines; - rows = (lines-SMALLCHAR_WIDTH)/SMALLCHAR_WIDTH; // rows of text to draw + rows = (lines-SMALLCHAR_HEIGHT*2)/SMALLCHAR_HEIGHT; // rows of text to draw y = lines - (SMALLCHAR_HEIGHT*3); |