change messages

This commit is contained in:
Denis Pauk 2018-07-25 15:16:32 +03:00
parent 125d6db8b6
commit fcae2fcbcd

View file

@ -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);
} }
} }