mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
Move more spammy message from "developer 1" to "developer 2":
- "meshing", "tri vert cmd" - "PR_AlocStringSlots: realloc'ing" git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1213 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
ddefff6b9e
commit
b750698e93
2 changed files with 3 additions and 3 deletions
|
@ -281,7 +281,7 @@ void BuildTris (void)
|
||||||
|
|
||||||
commands[numcommands++] = 0; // end of list marker
|
commands[numcommands++] = 0; // end of list marker
|
||||||
|
|
||||||
Con_DPrintf ("%3i tri %3i vert %3i cmd\n", pheader->numtris, numorder, numcommands);
|
Con_DPrintf2 ("%3i tri %3i vert %3i cmd\n", pheader->numtris, numorder, numcommands);
|
||||||
|
|
||||||
allverts += numorder;
|
allverts += numorder;
|
||||||
alltris += pheader->numtris;
|
alltris += pheader->numtris;
|
||||||
|
@ -312,7 +312,7 @@ void GL_MakeAliasModelDisplayLists (qmodel_t *m, aliashdr_t *hdr)
|
||||||
paliashdr = hdr; // (aliashdr_t *)Mod_Extradata (m);
|
paliashdr = hdr; // (aliashdr_t *)Mod_Extradata (m);
|
||||||
|
|
||||||
//johnfitz -- generate meshes
|
//johnfitz -- generate meshes
|
||||||
Con_DPrintf ("meshing %s...\n",m->name);
|
Con_DPrintf2 ("meshing %s...\n",m->name);
|
||||||
BuildTris ();
|
BuildTris ();
|
||||||
|
|
||||||
// save the data out
|
// save the data out
|
||||||
|
|
|
@ -1187,7 +1187,7 @@ int NUM_FOR_EDICT(edict_t *e)
|
||||||
static void PR_AllocStringSlots (void)
|
static void PR_AllocStringSlots (void)
|
||||||
{
|
{
|
||||||
pr_maxknownstrings += PR_STRING_ALLOCSLOTS;
|
pr_maxknownstrings += PR_STRING_ALLOCSLOTS;
|
||||||
Con_DPrintf("PR_AllocStringSlots: realloc'ing for %d slots\n", pr_maxknownstrings);
|
Con_DPrintf2("PR_AllocStringSlots: realloc'ing for %d slots\n", pr_maxknownstrings);
|
||||||
pr_knownstrings = (const char **) Z_Realloc ((void *)pr_knownstrings, pr_maxknownstrings * sizeof(char *));
|
pr_knownstrings = (const char **) Z_Realloc ((void *)pr_knownstrings, pr_maxknownstrings * sizeof(char *));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue