From fc24c1b0763e26a7a1cd18da123fd9372eaf857a Mon Sep 17 00:00:00 2001 From: havoc Date: Tue, 9 Oct 2007 05:30:35 +0000 Subject: [PATCH] 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 --- console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.2