From 47f95d0ef17b9bce5cc7da446a22c1ea7f2f5824 Mon Sep 17 00:00:00 2001 From: molivier Date: Fri, 9 Apr 2004 19:37:18 +0000 Subject: [PATCH] The base size of the log queue is 256 bytes, not 4 (it was a test for the queue automatic resizing that was commited by mistake) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4091 d7cf8633-e32d-0410-b094-e92efae38249 --- console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console.c b/console.c index ead9ffd4..0a193602 100644 --- a/console.c +++ b/console.c @@ -96,7 +96,7 @@ void Log_Init (void) } // Allocate a log queue - logq_size = 4; + logq_size = 256; logqueue = Mem_Alloc (tempmempool, logq_size); logq_ind = 0; } -- 2.39.2