mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
change messages
This commit is contained in:
parent
125d6db8b6
commit
fcae2fcbcd
1 changed files with 3 additions and 7 deletions
|
@ -451,9 +451,7 @@ R_ReallocateMapBuffers (void)
|
||||||
// is used to indicate no edge attached to surface
|
// is used to indicate no edge attached to surface
|
||||||
surfaces--;
|
surfaces--;
|
||||||
|
|
||||||
R_Printf(PRINT_ALL, "%s: Allocated %d surfaces\n",
|
R_Printf(PRINT_ALL, "Allocated %d surfaces\n", r_cnumsurfs);
|
||||||
__func__, r_cnumsurfs);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!r_numallocatededges || r_outofedges)
|
if (!r_numallocatededges || r_outofedges)
|
||||||
|
@ -484,8 +482,7 @@ R_ReallocateMapBuffers (void)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
R_Printf(PRINT_ALL, "%s: Allocated %d edges\n",
|
R_Printf(PRINT_ALL, "Allocated %d edges\n", r_numallocatededges);
|
||||||
__func__, r_numallocatededges);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!r_numallocatedverts || r_outofverts)
|
if (!r_numallocatedverts || r_outofverts)
|
||||||
|
@ -514,8 +511,7 @@ R_ReallocateMapBuffers (void)
|
||||||
}
|
}
|
||||||
finalverts_max = &finalverts[r_numallocatedverts];
|
finalverts_max = &finalverts[r_numallocatedverts];
|
||||||
|
|
||||||
R_Printf(PRINT_ALL, "%s: Allocated %d verts\n",
|
R_Printf(PRINT_ALL, "Allocated %d verts\n", r_numallocatedverts);
|
||||||
__func__, r_numallocatedverts);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue