From: molivier Date: Fri, 9 Apr 2004 19:37:18 +0000 (+0000) Subject: The base size of the log queue is 256 bytes, not 4 (it was a test for the queue autom... X-Git-Tag: xonotic-v0.1.0preview~5929 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=47f95d0ef17b9bce5cc7da446a22c1ea7f2f5824;p=xonotic%2Fdarkplaces.git 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 --- 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; }