so it prints how much hunk is actually used.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@190 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-09-13 02:20:49 +00:00
parent 0ea4557bde
commit 8fa4c53cdc
1 changed files with 1 additions and 0 deletions

View File

@ -690,6 +690,7 @@ void Hunk_Print (qboolean all)
{
Con_Printf ("-------------------------\n");
Con_Printf (" :%8i REMAINING\n", hunk_size - hunk_low_used - hunk_high_used);
Con_Printf (" :%8i USED\n", hunk_low_used + hunk_high_used);
Con_Printf ("-------------------------\n");
h = starthigh;
}