From: havoc Date: Sun, 11 Jun 2006 15:35:08 +0000 (+0000) Subject: don't draw notify lines while r_letterbox is on X-Git-Tag: xonotic-v0.1.0preview~3911 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=df8a35c7fbfaf6e8aae35508cae09facb016c31c;p=xonotic%2Fdarkplaces.git don't draw notify lines while r_letterbox is on git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6467 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_screen.c b/cl_screen.c index ab629fb6..7c2b09bf 100644 --- a/cl_screen.c +++ b/cl_screen.c @@ -440,7 +440,7 @@ void SCR_DrawConsole (void) else { con_vislines = 0; - if (key_dest == key_game || key_dest == key_message) + if ((key_dest == key_game || key_dest == key_message) && !r_letterbox.value) Con_DrawNotify (); // only draw notify in game } }