Remove debug prints

This commit is contained in:
Latapostrophe 2020-03-11 19:53:52 +01:00
parent a3389b43a0
commit 0ee6426830
2 changed files with 2 additions and 2 deletions

View file

@ -5369,7 +5369,7 @@ static inline void PingUpdate(void)
//make the ping packet and clear server data for next one
for (i = 0; i < MAXPLAYERS; i++)
{
CONS_Printf("player %d - total pings: %d\n", i, realpingtable[i]);
//CONS_Printf("player %d - total pings: %d\n", i, realpingtable[i]);
netbuffer->u.pingtable[i] = realpingtable[i] / pingmeasurecount;
//server takes a snapshot of the real ping for display.

View file

@ -1382,7 +1382,7 @@ static void UnArchiveExtVarsDemo(void *pointer)
for (i = 0; i < field_count; i++)
{
READSTRING(demo_p, field);
CONS_Printf("%s\n", field);
//CONS_Printf("%s\n", field);
UnArchiveValueDemo(TABLESINDEX);
lua_setfield(gL, -2, field);
}