]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix a warning (con_text is static, no need for an if check on it)
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 9 Oct 2007 05:30:35 +0000 (05:30 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 9 Oct 2007 05:30:35 +0000 (05:30 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7611 d7cf8633-e32d-0410-b094-e92efae38249

console.c

index 4c99296243d4f6920ea23804d64b8dac44207035..01fe262298218f43bdb236db346e9ddd3ebc2f1c 100644 (file)
--- 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);
 }