From fcae2fcbcd40959d0a98b7857dbcfacf498c2273 Mon Sep 17 00:00:00 2001 From: Denis Pauk Date: Wed, 25 Jul 2018 15:16:32 +0300 Subject: [PATCH] change messages --- src/client/refresh/soft/sw_main.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/client/refresh/soft/sw_main.c b/src/client/refresh/soft/sw_main.c index 2fc83065..ad03aefc 100644 --- a/src/client/refresh/soft/sw_main.c +++ b/src/client/refresh/soft/sw_main.c @@ -451,9 +451,7 @@ R_ReallocateMapBuffers (void) // is used to indicate no edge attached to surface surfaces--; - R_Printf(PRINT_ALL, "%s: Allocated %d surfaces\n", - __func__, r_cnumsurfs); - + R_Printf(PRINT_ALL, "Allocated %d surfaces\n", r_cnumsurfs); } if (!r_numallocatededges || r_outofedges) @@ -484,8 +482,7 @@ R_ReallocateMapBuffers (void) return; } - R_Printf(PRINT_ALL, "%s: Allocated %d edges\n", - __func__, r_numallocatededges); + R_Printf(PRINT_ALL, "Allocated %d edges\n", r_numallocatededges); } if (!r_numallocatedverts || r_outofverts) @@ -514,8 +511,7 @@ R_ReallocateMapBuffers (void) } finalverts_max = &finalverts[r_numallocatedverts]; - R_Printf(PRINT_ALL, "%s: Allocated %d verts\n", - __func__, r_numallocatedverts); + R_Printf(PRINT_ALL, "Allocated %d verts\n", r_numallocatedverts); } }