From a1a2426cc033ce428b00b0c1aae25c50f22614e8 Mon Sep 17 00:00:00 2001 From: havoc Date: Tue, 15 Jul 2003 09:07:27 +0000 Subject: [PATCH] increase number of digits for memlist reports git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3277 d7cf8633-e32d-0410-b094-e92efae38249 --- zone.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.39.2