Remove old debug prints

This commit is contained in:
Latapostrophe 2020-06-08 20:37:27 +02:00
parent ef45949202
commit 406d7c0b32

View file

@ -104,8 +104,6 @@ static void P_NetArchivePlayers(void)
UINT16 flags; UINT16 flags;
// size_t q; // size_t q;
CONS_Printf("SENDING NET INFO\n");
WRITEUINT32(save_p, ARCHIVEBLOCK_PLAYERS); WRITEUINT32(save_p, ARCHIVEBLOCK_PLAYERS);
for (i = 0; i < MAXPLAYERS; i++) for (i = 0; i < MAXPLAYERS; i++)
@ -308,8 +306,6 @@ static void P_NetUnArchivePlayers(void)
INT32 i, j; INT32 i, j;
UINT16 flags; UINT16 flags;
CONS_Printf("FETCHING NET INFO\n");
if (READUINT32(save_p) != ARCHIVEBLOCK_PLAYERS) if (READUINT32(save_p) != ARCHIVEBLOCK_PLAYERS)
I_Error("Bad $$$.sav at archive block Players"); I_Error("Bad $$$.sav at archive block Players");