From 482f84894df4454e8dd19c118b932e49fe08a1f3 Mon Sep 17 00:00:00 2001 From: tomaz Date: Sun, 12 Sep 2004 16:18:06 +0000 Subject: [PATCH] Fixed positioning of light editing display, it's was not following the console properly. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4488 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_screen.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cl_screen.c b/cl_screen.c index 927a3a66..4ac0ff09 100644 --- a/cl_screen.c +++ b/cl_screen.c @@ -34,6 +34,8 @@ float scr_conlines; // lines of console to display int clearconsole; int clearnotify; +extern int con_vislines; + qboolean scr_drawloading = false; void DrawCrosshair(int num); @@ -294,6 +296,7 @@ void SCR_DrawConsole (void) } else { + con_vislines = 0; if (key_dest == key_game || key_dest == key_message) Con_DrawNotify (); // only draw notify in game } -- 2.39.2