From 0fe2e8d2249deb0ea4a07c3a0284f185f8b62628 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sun, 13 Jul 2014 01:56:50 -0500 Subject: [PATCH] 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). --- code/client/cl_console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/cl_console.c b/code/client/cl_console.c index dee9d0cb..a3d4d322 100644 --- a/code/client/cl_console.c +++ b/code/client/cl_console.c @@ -677,7 +677,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);