From: havoc Date: Tue, 9 Oct 2007 05:30:35 +0000 (+0000) Subject: fix a warning (con_text is static, no need for an if check on it) X-Git-Tag: xonotic-v0.1.0preview~2867 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=fc24c1b0763e26a7a1cd18da123fd9372eaf857a;p=xonotic%2Fdarkplaces.git fix a warning (con_text is static, no need for an if check on it) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7611 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/console.c b/console.c index 4c992962..01fe2622 100644 --- a/console.c +++ b/console.c @@ -350,7 +350,7 @@ Con_Clear_f */ void Con_Clear_f (void) { - if (con_text) + //if (con_text) memset (con_text, ' ', CON_TEXTSIZE); }