From: havoc Date: Tue, 15 Jul 2003 09:07:27 +0000 (+0000) Subject: increase number of digits for memlist reports X-Git-Tag: xonotic-v0.1.0preview~6525 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a1a2426cc033ce428b00b0c1aae25c50f22614e8;p=xonotic%2Fdarkplaces.git increase number of digits for memlist reports git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3277 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/zone.c b/zone.c index 21b0fb06..a68c136e 100644 --- a/zone.c +++ b/zone.c @@ -353,9 +353,9 @@ void Mem_PrintList(int listallocations) for (pool = poolchain;pool;pool = pool->next) { if (pool->lastchecksize != 0 && pool->totalsize != pool->lastchecksize) - Con_Printf("%6ik (%6ik actual) %s (%i byte change)\n", (pool->totalsize + 1023) / 1024, (pool->realsize + 1023) / 1024, pool->name, pool->totalsize - pool->lastchecksize); + Con_Printf("%10ik (%10ik actual) %s (%i byte change)\n", (pool->totalsize + 1023) / 1024, (pool->realsize + 1023) / 1024, pool->name, pool->totalsize - pool->lastchecksize); else - Con_Printf("%6ik (%6ik actual) %s\n", (pool->totalsize + 1023) / 1024, (pool->realsize + 1023) / 1024, pool->name); + Con_Printf("%10ik (%10ik actual) %s\n", (pool->totalsize + 1023) / 1024, (pool->realsize + 1023) / 1024, pool->name); pool->lastchecksize = pool->totalsize; if (listallocations) for (mem = pool->chain;mem;mem = mem->next)