From a72096dc6dd4e4d6ac9bf7fdd60a5d6b12cb1d36 Mon Sep 17 00:00:00 2001 From: Spoike Date: Sun, 28 Nov 2010 19:16:12 +0000 Subject: [PATCH] cvar value->ival git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3677 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/console.c b/engine/client/console.c index 8bbdf5e88..63c31e1af 100644 --- a/engine/client/console.c +++ b/engine/client/console.c @@ -570,7 +570,7 @@ void Con_PrintCon (console_t *con, char *txt) break; case '\n': cr = false; - while (con->linecount >= con_maxlines.value) + while (con->linecount >= con_maxlines.ival) { if (con->oldest == con->current) break;