From 4873ac84efd46a4af84dbbb3b6bbbbe5a2d2044e Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sun, 13 Jul 2014 01:56:50 -0500 Subject: Restore drawing a cut off client console line in 1920x1080 The text lines don't meet at top of the sceen in 1920x1080, restore drawing a cut off line across the top. In 640x480 this line isn't seen at all. This is still better then trying to draw twice as many lines than are actually seen (the way it was before the last commit). --- src/client/cl_console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/cl_console.c b/src/client/cl_console.c index 4e89b98e..997fa660 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_HEIGHT*2)/SMALLCHAR_HEIGHT; // rows of text to draw + rows = (lines-SMALLCHAR_HEIGHT)/SMALLCHAR_HEIGHT; // rows of text to draw y = lines - (SMALLCHAR_HEIGHT*3); -- cgit