From: cloudwalk Date: Sun, 26 Jul 2020 16:01:31 +0000 (+0000) Subject: cl_screen: Fix compile warning X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b93c566ba18efbf8c9f69f2329385890424c1901;p=xonotic%2Fdarkplaces.git cl_screen: Fix compile warning git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12881 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_screen.c b/cl_screen.c index eb2c1031..67a9609d 100644 --- a/cl_screen.c +++ b/cl_screen.c @@ -2260,7 +2260,7 @@ static void SCR_DrawScreen (void) if ((key_dest == key_game || key_dest == key_message) && !r_letterbox.value && !scr_loading) Con_DrawNotify (); // only draw notify in game - if (cl.islocalgame && key_dest != key_game || key_consoleactive) + if (cl.islocalgame && (key_dest != key_game || key_consoleactive)) host.paused = true; else host.paused = false;