It's a bit annoying getting those messages.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@350 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-10-18 10:49:19 +00:00
parent fdad8d48af
commit 75684fdade
1 changed files with 4 additions and 2 deletions

View File

@ -331,7 +331,8 @@ void SV_CalcPHS (void)
return;
}
Con_TPrintf (STL_BUILDINGPHS);
if (developer.value)
Con_TPrintf (STL_BUILDINGPHS);
num = sv.worldmodel->numleafs;
rowwords = (num+31)>>5;
@ -391,7 +392,8 @@ void SV_CalcPHS (void)
}
if (num)
Con_TPrintf (STL_PHSINFO, vcount/num, count/num, num);
if (developer.value)
Con_TPrintf (STL_PHSINFO, vcount/num, count/num, num);
}
unsigned SV_CheckModel(char *mdl)